From 9abce515a47c08732eebbc6d5f136b081a544a95 Mon Sep 17 00:00:00 2001 From: Nam Chu Hoai Date: Sun, 19 Mar 2023 15:36:22 -0400 Subject: [PATCH] Reduce IGP indexer verbosity (#1965) ### Description Similar to the change we had to the mailbox to avoid polluting the logs --- rust/chains/hyperlane-ethereum/src/interchain_gas.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/chains/hyperlane-ethereum/src/interchain_gas.rs b/rust/chains/hyperlane-ethereum/src/interchain_gas.rs index e23277c58..8df6963cf 100644 --- a/rust/chains/hyperlane-ethereum/src/interchain_gas.rs +++ b/rust/chains/hyperlane-ethereum/src/interchain_gas.rs @@ -85,7 +85,7 @@ impl Indexer for EthereumInterchainGasPaymasterIndexer where M: Middleware + 'static, { - #[instrument(err, ret, skip(self))] + #[instrument(level = "debug", err, ret, skip(self))] async fn get_finalized_block_number(&self) -> ChainResult { Ok(self .provider