From 66c6cbc573505d7d6dd55cc54068e89e8fc97898 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Wed, 24 Apr 2024 19:34:11 +0100 Subject: [PATCH] feat(exex): do not log ID on ExEx start (#7846) --- crates/node-builder/src/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/node-builder/src/builder.rs b/crates/node-builder/src/builder.rs index 327d906b34..28e447775e 100644 --- a/crates/node-builder/src/builder.rs +++ b/crates/node-builder/src/builder.rs @@ -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}"),