Skip to content
Snippets Groups Projects
Commit f7e49b3f authored by Jonah Husson's avatar Jonah Husson
Browse files

Remove count in text print

parent 8b230ecf
No related branches found
No related tags found
2 merge requests!510Release,!240Integration update, allow client to use both broadcast methods
......@@ -255,7 +255,7 @@ var broadcastCmd = &cobra.Command{
jww.ERROR.Printf("Failed to decode sized broadcast: %+v", err)
continue
}
fmt.Printf("Asymmetric broadcast message %d/%d received: %s\n", receivedCount, expectedCnt, string(receivedBroadcast))
fmt.Printf("Asymmetric broadcast message received: %s\n", string(receivedBroadcast))
if receivedCount == expectedCnt {
done = true
}
......@@ -266,7 +266,7 @@ var broadcastCmd = &cobra.Command{
jww.ERROR.Printf("Failed to decode sized broadcast: %+v", err)
continue
}
fmt.Printf("Symmetric broadcast message %d/%d received: %s\n", receivedCount, expectedCnt, string(receivedBroadcast))
fmt.Printf("Symmetric broadcast message received: %s\n", string(receivedBroadcast))
if receivedCount == expectedCnt {
done = true
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment