Downgrade a per-block log to debug level

This commit is contained in:
teor 2020-11-24 21:10:38 +10:00 committed by Deirdre Connolly
parent e832f70c2c
commit 15d26e3c47
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ impl Chain {
pub fn push(&mut self, block: PreparedBlock) {
// update cumulative data members
self.update_chain_state_with(&block);
tracing::info!(block = %block.block, "adding block to chain");
tracing::debug!(block = %block.block, "adding block to chain");
self.blocks.insert(block.height, block);
}