Skip to content

Commit 10d933a

Browse files
apollo_central_sync: reduce log level for very noisy logs. (#7676)
1 parent 71419e3 commit 10d933a

File tree

1 file changed

+2
-2
lines changed
  • crates/apollo_central_sync/src

1 file changed

+2
-2
lines changed

crates/apollo_central_sync/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,7 @@ fn stream_new_blocks<
863863
).await?;
864864
}
865865
else{
866-
debug!("Blocks syncing reached the last known block {:?}, waiting for blockchain to advance.", header_marker.prev());
866+
trace!("Blocks syncing reached the last known block {:?}, waiting for blockchain to advance.", header_marker.prev());
867867
tokio::time::sleep(block_propagation_sleep_duration).await;
868868
};
869869
continue;
@@ -894,7 +894,7 @@ fn stream_new_state_diffs<TCentralSource: CentralSourceTrait + Sync + Send>(
894894
let last_block_number = txn.get_header_marker()?;
895895
drop(txn);
896896
if state_marker == last_block_number {
897-
debug!("State updates syncing reached the last downloaded block {:?}, waiting for more blocks.", state_marker.prev());
897+
trace!("State updates syncing reached the last downloaded block {:?}, waiting for more blocks.", state_marker.prev());
898898
tokio::time::sleep(block_propagation_sleep_duration).await;
899899
continue;
900900
}

0 commit comments

Comments
 (0)