Reduce IGP indexer verbosity (#1965)

### Description

Similar to the change we had to the mailbox to avoid polluting the logs
pull/1966/head
Nam Chu Hoai 2 years ago committed by GitHub
parent 25f19b716e
commit 9abce515a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      rust/chains/hyperlane-ethereum/src/interchain_gas.rs

@ -85,7 +85,7 @@ impl<M> Indexer for EthereumInterchainGasPaymasterIndexer<M>
where where
M: Middleware + 'static, M: Middleware + 'static,
{ {
#[instrument(err, ret, skip(self))] #[instrument(level = "debug", err, ret, skip(self))]
async fn get_finalized_block_number(&self) -> ChainResult<u32> { async fn get_finalized_block_number(&self) -> ChainResult<u32> {
Ok(self Ok(self
.provider .provider

Loading…
Cancel
Save