Skip to content

Commit 5e5653e

Browse files
committed
downgrated log level for "Detected an attempt to send a hbbft contribution for block"
1 parent 082981f commit 5e5653e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ethcore/src/engines/hbbft/hbbft_state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ impl HbbftState {
429429

430430
if let Some(latest_block) = client.block_number(BlockId::Latest) {
431431
if honey_badger.epoch() != latest_block + 1 {
432-
info!(target: "consensus", "Detected an attempt to send a hbbft contribution for block {} before the previous block was imported to the chain. (latest block: {})", honey_badger.epoch(), latest_block);
432+
debug!(target: "consensus", "Detected an attempt to send a hbbft contribution for block {} before the previous block was imported to the chain. (latest block: {})", honey_badger.epoch(), latest_block);
433433
return None;
434434
}
435435
}

0 commit comments

Comments
 (0)