Skip to content

Commit

Permalink
refactor: use debug for process pendign logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo authored Sep 9, 2024
1 parent f105912 commit e4b7a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/torii/core/src/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ impl<P: Provider + Send + Sync + std::fmt::Debug> Engine<P> {
}
Ok(_) => {
last_pending_block_tx = Some(*transaction_hash);
info!(target: LOG_TARGET, transaction_hash = %format!("{:#x}", transaction_hash), "Processed pending transaction.")
debug!(target: LOG_TARGET, transaction_hash = %format!("{:#x}", transaction_hash), "Processed pending transaction.")

Check warning on line 395 in crates/torii/core/src/engine.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/core/src/engine.rs#L395

Added line #L395 was not covered by tests
}
}
}
Expand Down

0 comments on commit e4b7a3e

Please sign in to comment.