Skip to content

Commit c12b920

Browse files
remove info
1 parent e5ea993 commit c12b920

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

consensus/src/marshal/core/actor.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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.
5858
const 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,

0 commit comments

Comments
 (0)