From e2d0369cd58c7e152194b08085395956c07f71e5 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 9 Jan 2023 18:23:27 -0800 Subject: [PATCH] lower level for reconnect --- web3_proxy/src/rpcs/connection.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web3_proxy/src/rpcs/connection.rs b/web3_proxy/src/rpcs/connection.rs index ce9c558a..7d48fb3e 100644 --- a/web3_proxy/src/rpcs/connection.rs +++ b/web3_proxy/src/rpcs/connection.rs @@ -351,7 +351,7 @@ impl Web3Connection { ); let reconnect_in = Duration::from_millis(first_sleep_ms); - warn!("Reconnect to {} in {}ms", self, reconnect_in.as_millis()); + info!("Reconnect to {} in {}ms", self, reconnect_in.as_millis()); sleep(reconnect_in).await; @@ -369,7 +369,7 @@ impl Web3Connection { ); let retry_in = Duration::from_millis(sleep_ms); - warn!( + info!( "Failed reconnect to {}! Retry in {}ms. err={:?}", self, retry_in.as_millis(),