update log

This commit is contained in:
Joel 2024-09-02 14:51:48 +08:00
parent 553d9c9249
commit 6f848c5cf2
2 changed files with 3 additions and 1 deletions

View File

@ -491,6 +491,8 @@ impl LogEntryFetcher {
log_events.push(submission_event_to_transaction(submit_filter));
}
info!("synced {} events", log_events.len());
}
let new_progress = if block.hash.is_some() && block.number.is_some() {

View File

@ -306,7 +306,7 @@ impl LogSyncManager {
async fn handle_data(&mut self, mut rx: UnboundedReceiver<LogFetchProgress>) -> Result<()> {
while let Some(data) = rx.recv().await {
trace!("handle_data: data={:?}", data);
debug!("handle_data: data={:?}", data);
match data {
LogFetchProgress::SyncedBlock((
block_number,