Skip to content
Snippets Groups Projects
Commit 9c32d668 authored by Josh Brooks's avatar Josh Brooks
Browse files

Add better log message

parent 7a4a3ebb
Branches
Tags
2 merge requests!510Release,!235Verify sends for auth messages
...@@ -284,14 +284,17 @@ var rootCmd = &cobra.Command{ ...@@ -284,14 +284,17 @@ var rootCmd = &cobra.Command{
// Monitor rounds for results // Monitor rounds for results
err = client.GetCmix().GetRoundResults(roundTimeout, f, rid) err = client.GetCmix().GetRoundResults(roundTimeout, f, rid)
if err != nil { 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 continue
} }
select { select {
case <-retryChan: case <-retryChan:
// On a retry, go to the top of the loop // 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 continue
case <-done: case <-done:
// Close channels on verification success // Close channels on verification success
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment