diff --git a/cmix/follow.go b/cmix/follow.go
index 1efab468a34443725c42e004d32a606e04670484..8e4dd03080c757aeca1d482d0e34660b65ab7924 100644
--- a/cmix/follow.go
+++ b/cmix/follow.go
@@ -306,13 +306,11 @@ func (c *client) follow(identity receptionID.IdentityUse,
 
 		// Trigger RoundEvents for all polled updates, including modified rounds
 		// with ClientErrors
-		startroundUpdates := netTime.Now()
 		err = c.instance.RoundUpdates(pollResp.Updates)
 		if err != nil {
 			jww.ERROR.Printf("%+v", err)
 			return
 		}
-		jww.INFO.Printf("took %s to process round updates", netTime.Since(startroundUpdates))
 
 		newestTS := uint64(0)
 		for i := 0; i < len(pollResp.Updates[len(pollResp.Updates)-1].Timestamps); i++ {
diff --git a/cmix/sendCmix.go b/cmix/sendCmix.go
index 6f7ca644576da4c59dcbf0d0335190541abbd05d..2f1164419846790b2b4402d8ebcf4e49608406aa 100644
--- a/cmix/sendCmix.go
+++ b/cmix/sendCmix.go
@@ -218,7 +218,7 @@ func sendCmixHelper(sender gateway.Sender, assembler messageAssembler, recipient
 		}
 
 		jww.INFO.Printf("[Send-%s] Best round found, took %s: %d",
-			cmixParams.DebugTag, bestRound.ID, time.Since(startSearch))
+			cmixParams.DebugTag, time.Since(startSearch), bestRound.ID)
 
 		// Determine whether the selected round contains any
 		// nodes that are blacklisted by the CMIXParams object
diff --git a/go.mod b/go.mod
index f5d99b632588dfafdddb481fe9ea714afe876bd8..ae579f6204b3e2a06f02bb8cac7a9c1268be5ced 100644
--- a/go.mod
+++ b/go.mod
@@ -14,7 +14,7 @@ require (
 	github.com/spf13/viper v1.12.0
 	github.com/stretchr/testify v1.8.0
 	gitlab.com/elixxir/bloomfilter v0.0.0-20211222005329-7d931ceead6f
-	gitlab.com/elixxir/comms v0.0.4-0.20221021234520-a4f94f752e3e
+	gitlab.com/elixxir/comms v0.0.4-0.20221023173239-c75420d94293
 	gitlab.com/elixxir/crypto v0.0.7-0.20221021211329-2d8ef59a4df1
 	gitlab.com/elixxir/ekv v0.2.1
 	gitlab.com/elixxir/primitives v0.0.3-0.20221017172918-6176818d1aba
diff --git a/go.sum b/go.sum
index 7d630917be6d7c6a7b85a771c2a2fed1c298df26..9aef34e71b8f11638ec9d4af21fe87601b435a97 100644
--- a/go.sum
+++ b/go.sum
@@ -635,6 +635,8 @@ gitlab.com/elixxir/comms v0.0.4-0.20221017173926-4eaa6061dfaa h1:/FEpu0N0rAyq74F
 gitlab.com/elixxir/comms v0.0.4-0.20221017173926-4eaa6061dfaa/go.mod h1:rW7xdbHntP2MoF3q+2+f+IR8OHol94MRyviotfR5rXg=
 gitlab.com/elixxir/comms v0.0.4-0.20221021234520-a4f94f752e3e h1:Go3Ec+LOm8t6j8wVgI4GqTfuy+PQkyblZCYQU7yGB2E=
 gitlab.com/elixxir/comms v0.0.4-0.20221021234520-a4f94f752e3e/go.mod h1:rW7xdbHntP2MoF3q+2+f+IR8OHol94MRyviotfR5rXg=
+gitlab.com/elixxir/comms v0.0.4-0.20221023173239-c75420d94293 h1:QIiZYjdtwjBCYaO7dZI6K8cEaA73wtd/YKIWD1oeDWw=
+gitlab.com/elixxir/comms v0.0.4-0.20221023173239-c75420d94293/go.mod h1:rW7xdbHntP2MoF3q+2+f+IR8OHol94MRyviotfR5rXg=
 gitlab.com/elixxir/crypto v0.0.0-20200804182833-984246dea2c4/go.mod h1:ucm9SFKJo+K0N2GwRRpaNr+tKXMIOVWzmyUD0SbOu2c=
 gitlab.com/elixxir/crypto v0.0.3/go.mod h1:ZNgBOblhYToR4m8tj4cMvJ9UsJAUKq+p0gCp07WQmhA=
 gitlab.com/elixxir/crypto v0.0.7-0.20221017173452-565da4101a3b/go.mod h1:1rftbwSVdy49LkBIkPr+w+P2mDOerYeBKoZuB3r0yqI=