mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
chore(engine): downgrade yielded transaction log to trace (#22597)
Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
@@ -50,7 +50,7 @@ use std::{
|
||||
},
|
||||
time::Duration,
|
||||
};
|
||||
use tracing::{debug, debug_span, instrument, warn, Span};
|
||||
use tracing::{debug, debug_span, instrument, trace, warn, Span};
|
||||
|
||||
pub mod bal;
|
||||
pub mod multiproof;
|
||||
@@ -449,9 +449,9 @@ where
|
||||
tx
|
||||
});
|
||||
let _ = execute_tx.send(tx);
|
||||
debug!(target: "engine::tree::payload_processor", idx, "yielded transaction");
|
||||
});
|
||||
});
|
||||
trace!(target: "engine::tree::payload_processor", idx, "yielded transaction");
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
(prewarm_rx, execute_rx)
|
||||
@@ -742,7 +742,7 @@ fn convert_serial<RawTx, Tx, TxEnv, InnerTx, Recovered, Err, C>(
|
||||
let _ = prewarm_tx.send((idx, tx.clone()));
|
||||
}
|
||||
let _ = execute_tx.send(tx);
|
||||
debug!(target: "engine::tree::payload_processor", idx, "yielded transaction");
|
||||
trace!(target: "engine::tree::payload_processor", idx, "yielded transaction");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user