more log improvements

This commit is contained in:
Bryan Stitt 2023-01-19 02:26:54 -08:00
parent 274778cd12
commit 2cb6dde052

View File

@ -865,7 +865,9 @@ impl ConsensusFinder {
.await .await
{ {
Err(err) => { Err(err) => {
warn!("Unable to find any consensus head: {}", err); if self.all.rpc_name_to_hash.len() < web3_connections.min_head_rpcs {
debug!("No consensus head yet: {}", err);
}
return ConsensusConnections::default(); return ConsensusConnections::default();
} }
Ok(x) => x, Ok(x) => x,
@ -887,6 +889,7 @@ impl ConsensusFinder {
error!("CONSENSUS HEAD IS VERY OLD! Backup RPCs did not improve this situation"); error!("CONSENSUS HEAD IS VERY OLD! Backup RPCs did not improve this situation");
x x
} else { } else {
// TODO: i don't think we need this error. and i doublt we'll ever even get here
error!("NO CONSENSUS HEAD!"); error!("NO CONSENSUS HEAD!");
ConsensusConnections::default() ConsensusConnections::default()
} }