From c68e657b698cce26e43be033f287d84510bd43ec Mon Sep 17 00:00:00 2001 From: Ethan Nguyen Date: Thu, 5 Jun 2025 13:19:01 -0400 Subject: [PATCH] chore: remove noisy log (#16691) --- crates/storage/provider/src/providers/database/provider.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/storage/provider/src/providers/database/provider.rs b/crates/storage/provider/src/providers/database/provider.rs index cd5539118d..27dc526689 100644 --- a/crates/storage/provider/src/providers/database/provider.rs +++ b/crates/storage/provider/src/providers/database/provider.rs @@ -2951,13 +2951,6 @@ impl BlockWrite // Increment transaction id for each transaction. next_tx_num += 1; } - - debug!( - target: "providers::db", - ?block_number, - actions = ?durations_recorder.actions, - "Inserted block body" - ); } self.storage.writer().write_block_bodies(self, bodies, write_to)?;