From ff43a1ca4d76d8dc7b499453ac1d2b875a12d410 Mon Sep 17 00:00:00 2001
From: benjamin <ben@elixxir.io>
Date: Mon, 10 Oct 2022 12:49:44 -0700
Subject: [PATCH] fixed bad prints

---
 cmix/follow.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmix/follow.go b/cmix/follow.go
index 166d89524..4d8688369 100644
--- a/cmix/follow.go
+++ b/cmix/follow.go
@@ -340,7 +340,7 @@ func (c *client) follow(identity receptionID.IdentityUse,
 		if !hasMessage && c.verboseRounds != nil {
 			c.verboseRounds.denote(rid, RoundState(NoMessageAvailable))
 		}
-		jww.INFO.Printf("[LOOKUP] round %d checked for %d, has message: %s", rid, identity.EphId.Int64(), hasMessage)
+		//jww.INFO.Printf("[LOOKUP] round %d checked for %d, has message: %s", rid, identity.EphId.Int64(), hasMessage)
 		return hasMessage
 	}
 
@@ -391,7 +391,7 @@ func (c *client) follow(identity receptionID.IdentityUse,
 		gwRoundsState.RangeUnchecked(
 			updatedEarliestRound, c.param.KnownRoundsThreshold, roundChecker)
 
-	jww.DEBUG.Printf("Processed RangeUnchecked for %s, Oldest: %d, "+
+	jww.DEBUG.Printf("Processed RangeUnchecked for %d, Oldest: %d, "+
 		"firstUnchecked: %d, last Checked: %d, threshold: %d, "+
 		"NewEarliestRemaining: %d, NumWithMessages: %d, NumUnknown: %d",
 		identity.EphId.Int64(), updatedEarliestRound, gwRoundsState.GetFirstUnchecked(),
-- 
GitLab