diff --git a/web3_proxy/src/rpcs/connections.rs b/web3_proxy/src/rpcs/connections.rs index c98fce85..a8e6b7fb 100644 --- a/web3_proxy/src/rpcs/connections.rs +++ b/web3_proxy/src/rpcs/connections.rs @@ -153,8 +153,9 @@ impl Web3Connections { handles.push(handle); } Ok(Err(err)) => { - // TODO: some of these are probably retry-able - error!(?err); + // if we got an error here, it is not retryable + // TODO: include context about which connection failed + error!(?err, "Unable to create connection"); } Err(err) => { return Err(err.into());