Revert "Downgrade a per-block log to debug level"

This reverts commit 15d26e3c47.
This commit is contained in:
Henry de Valence 2020-11-24 10:08:14 -08:00 committed by Deirdre Connolly
parent 487ee6d317
commit 2e0ed94b22
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::debug!(block = %block.block, "adding block to chain");
tracing::info!(block = %block.block, "adding block to chain");
self.blocks.insert(block.height, block);
}