diff --git a/network/rounds/manager.go b/network/rounds/manager.go index c488e39f3b2dc2311166b99d21b680dd3d0b8028..870885eceef31ef8b1e54a7cc03086cc312cf987 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)