diff --git a/crates/provider/src/alloy/metrics.rs b/crates/provider/src/alloy/metrics.rs index e58db3cd..5a784b55 100644 --- a/crates/provider/src/alloy/metrics.rs +++ b/crates/provider/src/alloy/metrics.rs @@ -99,7 +99,7 @@ where if resp.is_error() { let error = resp.as_error().unwrap(); if error.code < 0 { - tracing::error!( + tracing::warn!( "alloy provider of method {} response with error: {}", &method_name, error @@ -108,7 +108,7 @@ where } } Err(e) => { - tracing::error!( + tracing::warn!( "alloy provider of method {} response with error: {e:?}", &method_name, );