From 1b09bf5a2202fbdaaa0f32301c2fc6924d7e4ab1 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Tue, 3 Mar 2026 17:24:37 +0900 Subject: [PATCH] chore: storage root span to trace (#22712) --- crates/trie/trie/src/trie.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/trie/trie/src/trie.rs b/crates/trie/trie/src/trie.rs index 104c5815a3..9ea219f73a 100644 --- a/crates/trie/trie/src/trie.rs +++ b/crates/trie/trie/src/trie.rs @@ -610,8 +610,8 @@ where /// # Returns /// /// The storage root, number of walked entries and trie updates - /// for a given address if requested. - #[instrument(skip_all, target = "trie::storage_root", name = "storage_trie", fields(hashed_address = ?self.hashed_address, storage_root = tracing::field::Empty))] + /// for a given address if requested. + #[instrument(skip_all, level = "trace", target = "trie::storage_root", name = "storage_trie", fields(addr = %self.hashed_address, storage_root))] pub fn calculate(self, retain_updates: bool) -> Result { trace!(target: "trie::storage_root", "calculating storage root");