feat(exex): do not log ID on ExEx start (#7846)

This commit is contained in:
Alexey Shekhirin
2024-04-24 19:34:11 +01:00
committed by GitHub
parent 90da3205de
commit 66c6cbc573

View File

@@ -630,7 +630,7 @@ where
// spawn it as a crit task
executor.spawn_critical("exex", async move {
info!(target: "reth::cli", id, "ExEx started");
info!(target: "reth::cli", "ExEx started");
match exex.await {
Ok(_) => panic!("ExEx {id} finished. ExEx's should run indefinitely"),
Err(err) => panic!("ExEx {id} crashed: {err}"),