Skip to content
Snippets Groups Projects
Commit 100d8620 authored by David Stainton's avatar David Stainton
Browse files

Fix log Printf statements, correct number of args

parent 0322142f
No related branches found
No related tags found
5 merge requests!510Release,!419rewrote the health tracker to both consider if there are waiting rounds and...,!371[Channel RSAtoPrivate] Implement Reverse Asymmetric in Client/Broadcast,!354Channels impl,!340Project/channels
......@@ -46,7 +46,7 @@ func (al *adminListener) Listen(payload []byte,
if id.Round(cm.RoundID) != round.ID {
jww.WARN.Printf("The round message %s send on %d referenced "+
"(%d) was not the same as the round the message was found on (%d)",
msgID, al.chID, cm.RoundID, round.ID, al.chID)
msgID, al.chID, cm.RoundID, round.ID)
return
}
......
......@@ -48,7 +48,7 @@ func (gul *userListener) Listen(payload []byte,
if id.Round(cm.RoundID) != round.ID {
jww.WARN.Printf("The round message %s send on %d referenced "+
"(%d) was not the same as the round the message was found on (%d)",
msgID, gul.chID, cm.RoundID, round.ID, gul.chID)
msgID, gul.chID, cm.RoundID, round.ID)
return
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment