From 4c4a30f0ec30d28307d50d1316afe02917031265 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Mon, 18 Sep 2023 18:03:53 +0100 Subject: [PATCH] feat(bin): log prune config on startup --- bin/reth/src/node/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/reth/src/node/mod.rs b/bin/reth/src/node/mod.rs index 8905dba4d0c5..70d61ca8b44f 100644 --- a/bin/reth/src/node/mod.rs +++ b/bin/reth/src/node/mod.rs @@ -447,7 +447,7 @@ impl NodeCommand { }; let pruner = prune_config.map(|prune_config| { - info!(target: "reth::cli", "Pruner initialized"); + info!(target: "reth::cli", ?prune_config, "Pruner initialized"); reth_prune::Pruner::new( db.clone(), self.chain.clone(),