Skip to content

Commit

Permalink
chore(sequencer_node): add error trace for config load
Browse files Browse the repository at this point in the history
commit-id:652fa4b0
  • Loading branch information
Itay-Tsabary-Starkware committed Nov 12, 2024
1 parent 07e9c7a commit 30599ea
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/sequencer_node/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ async fn main() -> anyhow::Result<()> {

let config = SequencerNodeConfig::load_and_process(args().collect());
if let Err(ConfigError::CommandInput(clap_err)) = config {
error!("Failed loading configuration: {}", clap_err);
clap_err.exit();
}
info!("Finished loading configuration.");
Expand Down

0 comments on commit 30599ea

Please sign in to comment.