diff --git a/bin/reth/src/node/mod.rs b/bin/reth/src/node/mod.rs index d76b176dcc..e24295d98d 100644 --- a/bin/reth/src/node/mod.rs +++ b/bin/reth/src/node/mod.rs @@ -353,7 +353,9 @@ impl Command { } fn load_config(&self) -> eyre::Result { - confy::load_path::(&self.config).wrap_err("Could not load config") + confy::load_path::(&self.config).wrap_err_with(|| { + format!("Could not load config file {}", self.config.as_ref().display()) + }) } fn init_trusted_nodes(&self, config: &mut Config) {