display, not debug

This commit is contained in:
Bryan Stitt 2023-05-16 16:13:56 -07:00
parent 5d64524aa6
commit 30ea532c70
2 changed files with 4 additions and 4 deletions

@ -648,7 +648,7 @@ impl Web3ProxyApp {
top_config.app.max_block_lag, top_config.app.max_block_lag,
top_config.app.min_synced_rpcs, top_config.app.min_synced_rpcs,
top_config.app.min_sum_soft_limit, top_config.app.min_sum_soft_limit,
"balanced".to_string(), "balanced rpcs".to_string(),
pending_transactions.clone(), pending_transactions.clone(),
Some(pending_tx_sender.clone()), Some(pending_tx_sender.clone()),
Some(watch_consensus_head_sender), Some(watch_consensus_head_sender),
@ -676,7 +676,7 @@ impl Web3ProxyApp {
None, None,
0, 0,
0, 0,
"protected".to_string(), "protected rpcs".to_string(),
pending_transactions.clone(), pending_transactions.clone(),
// TODO: subscribe to pending transactions on the private rpcs? they seem to have low rate limits, but they should have // TODO: subscribe to pending transactions on the private rpcs? they seem to have low rate limits, but they should have
None, None,
@ -710,7 +710,7 @@ impl Web3ProxyApp {
None, None,
0, 0,
0, 0,
"eip4337".to_string(), "eip4337 rpcs".to_string(),
pending_transactions.clone(), pending_transactions.clone(),
None, None,
None, None,

@ -633,7 +633,7 @@ impl Web3Rpcs {
None => { None => {
// none of the servers gave us a time to retry at // none of the servers gave us a time to retry at
debug!( debug!(
"{:?} - no servers on {:?} gave a retry time! Skipped {:?}", "{:?} - no servers in {} gave a retry time! Skipped {:?}",
request_ulid, self, skip request_ulid, self, skip
); );