Skip to content

Commit

Permalink
removed verbose debug message "Skipping honey_badger forward to epoch…
Browse files Browse the repository at this point in the history
…" for now, since it is a very common scenario and it flooded the log output.
  • Loading branch information
SurfingNerd committed Aug 4, 2021
1 parent bd9b110 commit 945b4d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/ethcore/src/engines/hbbft/hbbft_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ impl HbbftState {
let honey_badger = self.honey_badger.as_mut()?;

let next_block = latest_block_number + 1;
if next_block != honey_badger.epoch() {
trace!(target: "consensus", "Skipping honey_badger forward to epoch(block) {}, was at epoch(block) {}.", next_block, honey_badger.epoch());
}
// if next_block != honey_badger.epoch() {
//trace!(target: "consensus", "Skipping honey_badger forward to epoch(block) {}, was at epoch(block) {}.", next_block, honey_badger.epoch());
// }
honey_badger.skip_to_epoch(next_block);

Some(())
Expand Down

0 comments on commit 945b4d7

Please sign in to comment.