From 74fb5dd0828d81038fc10d8fee031897f81a6e9a Mon Sep 17 00:00:00 2001
From: josh <josh@elixxir.io>
Date: Tue, 1 Jun 2021 13:20:56 -0700
Subject: [PATCH] Add temporary debug print

---
 network/rounds/manager.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/network/rounds/manager.go b/network/rounds/manager.go
index c488e39f3..870885ece 100644
--- a/network/rounds/manager.go
+++ b/network/rounds/manager.go
@@ -9,6 +9,7 @@ package rounds
 
 import (
 	"fmt"
+	jww "github.com/spf13/jwalterweatherman"
 	"gitlab.com/elixxir/client/interfaces/params"
 	"gitlab.com/elixxir/client/network/gateway"
 	"gitlab.com/elixxir/client/network/internal"
@@ -60,6 +61,7 @@ func (m *Manager) StartProcessors() stoppable.Stoppable {
 
 	// Start the periodic unchecked round worker
 	stopper := stoppable.NewSingle("UncheckRound")
+	jww.FATAL.Printf("** Uncheck round period: %v", m.params.UncheckRoundPeriod)
 	go m.processUncheckedRounds(m.params.UncheckRoundPeriod, backOffTable, stopper.Quit())
 	multi.Add(stopper)
 
-- 
GitLab