Skip to content

Commit

Permalink
feat(bin): log prune config on startup (#4641)
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin authored Sep 18, 2023
1 parent 4aa3ebd commit b5905c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/reth/src/node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ impl<Ext: RethCliExt> NodeCommand<Ext> {
};

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(),
Expand Down

0 comments on commit b5905c4

Please sign in to comment.