perf: downgrade on_hashed_state_update and on_prewarm_targets spans to trace (#22044)

Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
Georgios Konstantopoulos
2026-02-10 17:45:05 -05:00
committed by GitHub
parent 5c4163c177
commit 779e0eb8bb
2 changed files with 3 additions and 7 deletions

View File

@@ -590,11 +590,7 @@ where
return
};
while let Ok(IndexedTransaction { index, tx }) = {
let _enter = debug_span!(target: "engine::tree::payload_processor::prewarm", "recv tx")
.entered();
txs.recv()
} {
while let Ok(IndexedTransaction { index, tx }) = txs.recv() {
let enter = debug_span!(
target: "engine::tree::payload_processor::prewarm",
"prewarm tx",

View File

@@ -486,7 +486,7 @@ where
}
#[instrument(
level = "debug",
level = "trace",
target = "engine::tree::payload_processor::sparse_trie",
skip_all
)]
@@ -518,7 +518,7 @@ where
/// Processes a hashed state update and encodes all state changes as trie updates.
#[instrument(
level = "debug",
level = "trace",
target = "engine::tree::payload_processor::sparse_trie",
skip_all
)]