Skip to content

Commit

Permalink
fix: print cause of settings error (#4972)
Browse files Browse the repository at this point in the history
  • Loading branch information
dandanlen committed Jul 1, 2024
1 parent a9fa6e4 commit 6cc44fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub fn settings_and_run_main(
{
Ok(settings) => settings,
Err(e) => {
eprintln!("Error reading settings: {}", e);
eprintln!("{:#}", e);
return ExitStatus { status_code: ERROR_READING_SETTINGS, at_block: NO_START_FROM };
},
};
Expand Down

0 comments on commit 6cc44fb

Please sign in to comment.