diff --git a/web3_proxy/src/rpcs/one.rs b/web3_proxy/src/rpcs/one.rs index 8ee53e9a..8e49a92c 100644 --- a/web3_proxy/src/rpcs/one.rs +++ b/web3_proxy/src/rpcs/one.rs @@ -883,7 +883,11 @@ impl Web3Rpc { broadcast::error::RecvError::Lagged(lagged) => { // querying the block was delayed // this can happen if tokio is very busy or waiting for requests limits took too long - warn!("http interval on {} lagging by {}!", self, lagged); + if self.backup { + debug!("http interval on {} lagging by {}!", self, lagged); + } else { + warn!("http interval on {} lagging by {}!", self, lagged); + } } } }