Skip to content

Commit 3f21ebc

Browse files
committed
Warnf-->Infof
Signed-off-by: Hagar Meir <[email protected]>
1 parent 82cd504 commit 3f21ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/bft/view.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ func (v *View) processMsg(sender uint64, m *protos.Message) {
223223
v.Logger.Debugf("%d got message %s from %d with seq %d", v.SelfID, MsgToString(m), sender, msgProposalSeq)
224224
// This message is either for this proposal or the next one (we might be behind the rest)
225225
if msgProposalSeq != v.ProposalSequence && msgProposalSeq != v.ProposalSequence+1 {
226-
v.Logger.Warnf("%d got message from %d with sequence %d but our sequence is %d", v.SelfID, sender, msgProposalSeq, v.ProposalSequence)
226+
v.Logger.Infof("%d got message from %d with sequence %d but our sequence is %d", v.SelfID, sender, msgProposalSeq, v.ProposalSequence)
227227
v.discoverIfSyncNeeded(sender, m)
228228
return
229229
}

0 commit comments

Comments
 (0)