Skip to content

Commit 2a17bb0

Browse files
committed
ref: warn to trace
1 parent 8e7865d commit 2a17bb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/robust_provider/provider.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use alloy::{
1111
use backon::{ExponentialBuilder, Retryable};
1212
use thiserror::Error;
1313
use tokio::time::{error as TokioError, timeout};
14-
use tracing::{error, info, instrument, warn};
14+
use tracing::{error, info, instrument, trace, warn};
1515

1616
use crate::robust_provider::RobustSubscription;
1717

@@ -337,7 +337,7 @@ impl<N: Network> RobustProvider<N> {
337337
let fallback_providers = self.fallback_providers.iter().enumerate().skip(start_index);
338338
for (fallback_idx, provider) in fallback_providers {
339339
if require_pubsub && !Self::supports_pubsub(provider) {
340-
warn!(
340+
trace!(
341341
provider_num = fallback_idx + 1,
342342
"Fallback provider doesn't support pubsub, skipping"
343343
);

0 commit comments

Comments
 (0)