bump eta calculator log prio (#2726)

### Description

<!--
What's included in this PR?
-->

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
pull/2732/head
Daniel Savu 1 year ago committed by GitHub
parent 903af462d3
commit 35fdc74f7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      rust/hyperlane-base/src/contract_sync/eta_calculator.rs

@ -1,7 +1,7 @@
use std::time::{Duration, Instant};
use derive_new::new;
use tracing::trace;
use tracing::debug;
/// Calculates the expected time to catch up to the tip of the blockchain.
#[derive(new)]
@ -66,7 +66,7 @@ impl SyncerEtaCalculator {
{
Ok(eta) => eta,
Err(e) => {
trace!(error=?e, tip=?current_tip, block=?current_block, rate=?effective_rate, "Failed to calculate the eta");
debug!(error=?e, tip=?current_tip, block=?current_block, rate=?effective_rate, "Failed to calculate the eta");
default_duration
}
}

Loading…
Cancel
Save