Skip to content

Commit

Permalink
feat(err): use warn instead of debug (#916)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfourzerofour authored Nov 25, 2024
1 parent bb2dbca commit db86d73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/pool/src/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ use tokio::{
sync::{broadcast, Semaphore},
time,
};
use tracing::{debug, info, warn};
use tracing::{info, warn};

const MAX_LOAD_OPS_CONCURRENCY: usize = 64;

Expand Down Expand Up @@ -218,7 +218,7 @@ impl<P: EvmProvider> Chain<P> {
match update {
Ok(update) => return update,
Err(error) => {
debug!("Failed to update chain at block {block_hash:?}: {error:?}");
warn!("Failed to update chain at block {block_hash:?}: {error:?}");
}
}

Expand Down

0 comments on commit db86d73

Please sign in to comment.