Skip to content

Commit a74e247

Browse files
Replace the tracing::info call
1 parent a668f13 commit a74e247

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

aggregation_mode/payments_poller/src/payments.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ use alloy::{
1010
providers::{Provider, ProviderBuilder},
1111
};
1212
use sqlx::types::BigDecimal;
13-
use tracing::info;
1413

1514
pub struct PaymentsPoller {
1615
db: Db,
@@ -63,7 +62,7 @@ impl PaymentsPoller {
6362
};
6463

6564
let from = last_block_fetched.saturating_sub(5);
66-
info!("Fetching logs from block {from} to {current_block}");
65+
tracing::info!("Fetching logs from block {from} to {current_block}");
6766

6867
let Ok(logs) = self
6968
.proof_aggregation_service

0 commit comments

Comments
 (0)