Skip to content

Commit 62b5dd8

Browse files
committed
Restore regular tracing
1 parent 03e30fb commit 62b5dd8

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

crates/networking/p2p/sync.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,6 @@ impl Syncer {
314314
.await?
315315
.ok_or(SyncError::CorruptDB)?;
316316
let block_number = block.header.number;
317-
info!("Executing block: {block_number}");
318-
319317
self.blockchain.add_block(&block).await?;
320318
store.set_canonical_block(block_number, *hash).await?;
321319
store.update_latest_block_number(block_number).await?;

crates/networking/p2p/sync/state_healing.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub(crate) async fn heal_state_trie(
3535
peers: PeerHandler,
3636
) -> Result<bool, SyncError> {
3737
let mut paths = store.get_state_heal_paths().await?.unwrap_or_default();
38-
info!(
38+
debug!(
3939
"Starting state healing, pre-existing paths: {}",
4040
paths.len()
4141
);

0 commit comments

Comments
 (0)