Demote log level

This commit is contained in:
Michael Vines
2019-03-22 14:03:59 -07:00
parent 3285cf8047
commit 6a1904664c

View File

@ -425,7 +425,7 @@ impl ReplayStage {
info!("bank frozen {}", bank.slot()); info!("bank frozen {}", bank.slot());
progress.remove(&bank.slot()); progress.remove(&bank.slot());
if let Err(e) = slot_full_sender.send((bank.slot(), bank.collector_id())) { if let Err(e) = slot_full_sender.send((bank.slot(), bank.collector_id())) {
info!("{} slot_full alert failed: {:?}", my_id, e); trace!("{} slot_full alert failed: {:?}", my_id, e);
} }
} }