diff --git a/crates/pool/src/chain.rs b/crates/pool/src/chain.rs index dd2563098..0940e062e 100644 --- a/crates/pool/src/chain.rs +++ b/crates/pool/src/chain.rs @@ -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; @@ -218,7 +218,7 @@ impl Chain

{ 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:?}"); } }