lower log level

This commit is contained in:
Bryan Stitt 2023-02-15 21:30:42 -08:00 committed by yenicelik
parent 30d4da6594
commit 678cd8067b

View File

@ -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);
}
}
}
}