Skip to content

Commit ba2f010

Browse files
committed
remove annoying logs
1 parent 79f544c commit ba2f010

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core/src/indexer/fetch_logs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ async fn live_indexing_stream(
359359
}
360360
continue;
361361
}
362-
info!(
362+
debug!(
363363
"{} - {} - New block seen {} - Last seen block {}",
364364
info_log_name,
365365
IndexingEventProgressStatus::Live.log(),
@@ -392,7 +392,7 @@ async fn live_indexing_stream(
392392
IndexingEventProgressStatus::Live.log(),
393393
from_block
394394
);
395-
info!(
395+
debug!(
396396
"{} - {} - Did not need to hit RPC as no events in {} block - LogsBloom for block checked",
397397
info_log_name,
398398
IndexingEventProgressStatus::Live.log(),

core/src/indexer/process.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ async fn live_indexing_for_contract_event_dependencies<'a>(
301301
}
302302
continue;
303303
}
304-
info!(
304+
debug!(
305305
"{} - {} - New block seen {} - Last seen block {}",
306306
&config.info_log_name,
307307
IndexingEventProgressStatus::Live.log(),
@@ -338,7 +338,7 @@ async fn live_indexing_for_contract_event_dependencies<'a>(
338338
IndexingEventProgressStatus::Live.log(),
339339
from_block
340340
);
341-
info!(
341+
debug!(
342342
"{} - {} - Did not need to hit RPC as no events in {} block - LogsBloom for block checked",
343343
&config.info_log_name,
344344
IndexingEventProgressStatus::Live.log(),

0 commit comments

Comments
 (0)