Skip to content

Commit f689d3c

Browse files
committed
remove warn log
1 parent 2192499 commit f689d3c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

epoch.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1530,9 +1530,7 @@ func (e *Epoch) handleNotarizationMessage(message *Notarization, from NodeID) er
15301530
// If this notarization is for a round we are currently processing its proposal,
15311531
// or for a future round, then store it for later use.
15321532
if !exists {
1533-
// I put a warn here for now just curiously to see when this is actually called
1534-
// answer: advance round, occasionally can receive the notarization before the block
1535-
e.Logger.Warn("Received a notarization for this round, but we don't have a block for it yet", zap.Uint64("round", vote.Round), zap.Uint64("epoch round", e.round))
1533+
e.Logger.Info("Received a notarization for this round, but we don't have a block for it yet", zap.Uint64("round", vote.Round), zap.Uint64("epoch round", e.round))
15361534
e.storeFutureNotarization(message, from, vote.Round)
15371535

15381536
// TODO: we need to request the block.

0 commit comments

Comments
 (0)