Skip to content

Commit 975221a

Browse files
committed
adjusted log levels
1 parent d831a73 commit 975221a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ impl IoHandler<()> for TransitionHandler {
382382

383383
let is_staked = self.engine.is_staked();
384384
if is_staked {
385-
debug!(target: "consensus", "We are staked!");
385+
trace!(target: "consensus", "We are staked!");
386386
let is_available = self.engine.is_available();
387387
if !is_available {
388388
warn!(target: "consensus", "Initiating Shutdown: Honey Badger Consensus detected that this Node has been flagged as unavailable, while it should be available.");

crates/ethcore/sync/src/chain/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ impl ChainSync {
10211021
// Reactivate peers only if some progress has been made
10221022
// since the last sync round of if starting fresh.
10231023
self.active_peers = self.peers.keys().cloned().collect();
1024-
info!(target: "sync", "resetting sync state to {:?}", self.state);
1024+
debug!(target: "sync", "resetting sync state to {:?}", self.state);
10251025
}
10261026

10271027
/// Add a request for later processing

0 commit comments

Comments
 (0)