File tree Expand file tree Collapse file tree
consensus/src/marshal/core Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ use std::{
5252 pin:: Pin ,
5353 sync:: Arc ,
5454} ;
55- use tracing:: { debug, error, info , warn} ;
55+ use tracing:: { debug, error, warn} ;
5656
5757/// The key used to store the last processed height in the metadata store.
5858const LATEST_KEY : U64 = U64 :: new ( 0xFF ) ;
@@ -491,7 +491,7 @@ where
491491 } ,
492492 // Handle consensus inputs before backfill or resolver traffic
493493 Some ( message) = self . mailbox. recv( ) else {
494- info !( "mailbox closed, shutting down" ) ;
494+ debug !( "mailbox closed, shutting down" ) ;
495495 break ;
496496 } => {
497497 match message {
@@ -745,7 +745,7 @@ where
745745 } ,
746746 // Handle resolver messages last (batched up to max_repair, sync once)
747747 Some ( message) = resolver_rx. recv( ) else {
748- info !( "handler closed, shutting down" ) ;
748+ debug !( "handler closed, shutting down" ) ;
749749 return ;
750750 } => {
751751 // Drain up to max_repair messages: blocks handled immediately,
You can’t perform that action at this time.
0 commit comments