From ad9f9605f2458a11559cff916647c5f36dba04be Mon Sep 17 00:00:00 2001 From: Larko <59736843+Larkooo@users.noreply.github.com> Date: Sun, 8 Sep 2024 22:23:56 -0400 Subject: [PATCH] refactor: use debug for process pendign logs (#2401) --- crates/torii/core/src/engine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/torii/core/src/engine.rs b/crates/torii/core/src/engine.rs index cac214c602..a12420d5a0 100644 --- a/crates/torii/core/src/engine.rs +++ b/crates/torii/core/src/engine.rs @@ -392,7 +392,7 @@ impl Engine

{ } 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.") } } }