Skip to content

Commit bb99abf

Browse files
committed
chore: comments
1 parent 27e6144 commit bb99abf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utils/block_watcher.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use tokio::{
1010
sync::{broadcast::error::RecvError, watch},
1111
task::JoinHandle,
1212
};
13-
use tracing::{debug, error, info, trace, warn};
13+
use tracing::{debug, error, trace};
1414

1515
/// Host chain block watcher that subscribes to new blocks and broadcasts
1616
/// updates via a watch channel.
@@ -70,10 +70,10 @@ impl BlockWatcher {
7070
trace!(block_number, "updated host block number");
7171
}
7272
Err(RecvError::Lagged(missed)) => {
73-
warn!(%missed, "block subscription lagged");
73+
debug!(%missed, "block subscription lagged");
7474
}
7575
Err(RecvError::Closed) => {
76-
info!("block subscription closed");
76+
debug!("block subscription closed");
7777
break;
7878
}
7979
}

0 commit comments

Comments
 (0)