Downgrade a per-block log to debug level
This commit is contained in:
parent
e832f70c2c
commit
15d26e3c47
|
@ -33,7 +33,7 @@ impl Chain {
|
||||||
pub fn push(&mut self, block: PreparedBlock) {
|
pub fn push(&mut self, block: PreparedBlock) {
|
||||||
// update cumulative data members
|
// update cumulative data members
|
||||||
self.update_chain_state_with(&block);
|
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);
|
self.blocks.insert(block.height, block);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue