From b02c8512374d341aaa3bba37ad6c473c204a65ba Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 5 Dec 2022 16:47:27 -0800 Subject: [PATCH] raise log level for block data limit --- web3_proxy/src/rpcs/connection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3_proxy/src/rpcs/connection.rs b/web3_proxy/src/rpcs/connection.rs index eff0a072..006b43c9 100644 --- a/web3_proxy/src/rpcs/connection.rs +++ b/web3_proxy/src/rpcs/connection.rs @@ -276,7 +276,7 @@ impl Web3Connection { .store(limit, atomic::Ordering::Release); } - debug!("block data limit on {}: {:?}", self.name, limit); + info!("block data limit on {}: {:?}", self, limit); Ok(limit) }