File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/apollo_central_sync/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments