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 authored Jun 17, 2024
1 parent 4c3bf6f commit 83e9691
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 83e9691

Please sign in to comment.