From 3f105c10b5d202a965c041bf827d4df9dc7111b1 Mon Sep 17 00:00:00 2001
From: benjamin <ben@elixxir.io>
Date: Thu, 20 Oct 2022 14:48:03 -0700
Subject: [PATCH] removing spammy print

---
 cmix/follow.go | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/cmix/follow.go b/cmix/follow.go
index 59e7cf7ed..8e4dd0308 100644
--- a/cmix/follow.go
+++ b/cmix/follow.go
@@ -27,7 +27,6 @@ import (
 	"encoding/binary"
 	"fmt"
 	"gitlab.com/elixxir/client/cmix/identity/receptionID"
-	"math/rand"
 	"sync"
 	"sync/atomic"
 	"time"
@@ -88,11 +87,6 @@ func (c *client) followNetwork(report ClientErrorReport,
 			stop.ToStopped()
 			return
 		case <-ticker.C:
-
-			if rand.Int()%6 == 0 {
-				jww.INFO.Printf("Registered with %d nodes", c.NumRegisteredNodes())
-			}
-
 			operator := func(toTrack []receptionID.IdentityUse) error {
 
 				// set up tracking tools
-- 
GitLab