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,12 +883,16 @@ 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
if self.backup {
debug!("http interval on {} lagging by {}!", self, lagged);
} else {
warn!("http interval on {} lagging by {}!", self, lagged);
}
}
}
}
}
}
Some(Web3Provider::Both(_, client)) | Some(Web3Provider::Ws(client)) => {
// todo: move subscribe_blocks onto the request handle?
let active_request_handle = self