Reduce log level for periodic debug messages

This commit is contained in:
Pankaj Garg 2019-03-15 15:17:19 -07:00 committed by Grimes
parent ca4f874f52
commit 971da7325d
2 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ impl PohRecorder {
.map(|target_tick| {
// Either grace period has expired,
// or target tick is = grace period (i.e. poh recorder was just reset)
info!(
debug!(
"Current tick {}, start tick {} target {}, grace {}",
self.tick_height(),
self.start_tick,

View File

@ -151,7 +151,7 @@ impl ReplayStage {
next_leader_slot,
ticks_per_slot,
);
info!(
debug!(
"{:?} voted and reset poh at {}. next leader slot {:?}",
my_id,
bank.tick_height(),
@ -165,7 +165,7 @@ impl ReplayStage {
let poh = poh_recorder.lock().unwrap();
reached_leader_tick = poh.reached_leader_tick();
info!(
debug!(
"{:?} TPU bank inactive. poh tick {}, leader {}",
my_id,
poh.tick_height(),