Skip to content

Commit

Permalink
feat: Add process name in the error message for easy debug
Browse files Browse the repository at this point in the history
  • Loading branch information
xmanemran committed Jul 31, 2024
1 parent 2973b11 commit e52a79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async fn main() {
match result {
Ok(params) => env.params(&params),
Err(error) => {
eprintln!("[ERROR] Reading parameters at `{}`: {}", path, error);
eprintln!("[PSE][ERROR] Reading parameters at `{}`: {}", path, error);
std::process::exit(1);
}
};
Expand Down

0 comments on commit e52a79b

Please sign in to comment.