From 9c32d6689f1b3cb437188c1b93eeae677963d4f3 Mon Sep 17 00:00:00 2001 From: josh <josh@elixxir.io> Date: Tue, 14 Jun 2022 15:45:26 -0700 Subject: [PATCH] Add better log message --- cmd/root.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index ad02ae3ac..5a0f1a7e1 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -284,14 +284,17 @@ var rootCmd = &cobra.Command{ // Monitor rounds for results err = client.GetCmix().GetRoundResults(roundTimeout, f, rid) if err != nil { - jww.DEBUG.Printf("Could not verify messages were sent successfully, resending messages...") + jww.DEBUG.Printf("Could not verify "+ + "confirmation message for relationship with %s were sent "+ + "successfully, resending messages...", recipientID) continue } select { case <-retryChan: // On a retry, go to the top of the loop - jww.DEBUG.Printf("Messages were not sent successfully, resending messages...") + jww.DEBUG.Printf("Confirmation message for relationship with %s "+ + "were not sent successfully, resending messages...", recipientID) continue case <-done: // Close channels on verification success -- GitLab