Skip to content

Commit

Permalink
main.rs: add "Error: " prefix on all stderr error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimpkins committed Dec 18, 2023
1 parent c54a5aa commit b476a6d
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 @@ -25,7 +25,7 @@ fn main() -> ExitCode {
}
}
}
eprintln!("{:#}", err);
eprintln!("Error: {:#}", err);
ExitCode::from(1)
}
}
Expand Down

0 comments on commit b476a6d

Please sign in to comment.