From a0b2277a51d0d1b1646e710f456f1c616a32281c Mon Sep 17 00:00:00 2001 From: benjamin <ben@elixxir.io> Date: Thu, 27 Oct 2022 13:32:36 -0700 Subject: [PATCH] added prints --- cmix/nodes/registrar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmix/nodes/registrar.go b/cmix/nodes/registrar.go index 02fc27757..d0170e1a1 100644 --- a/cmix/nodes/registrar.go +++ b/cmix/nodes/registrar.go @@ -135,7 +135,7 @@ func (r *registrar) PauseNodeRegistrations(timeout time.Duration) error { for i := int64(0); i < numRegistrations; i++ { select { case r.pauser <- struct{}{}: - jww.INFO.Printf("paused node %d", i) + jww.INFO.Printf("PauseNodeRegistrations() - paused node %d", i) case <-timer.C: return errors.Errorf("Timed out on pausing node registration on %d", i) } -- GitLab