Fix usage messages being printed in debug mode #47

Merged
Mr_Steppy merged 1 commits from fix-usage-messages into master 2026-09-03 15:04:25 +02:00
Showing only changes of commit fd8b917b3c - Show all commits

View File

@ -835,8 +835,14 @@ where
}
}
fn main() -> Result<(), String> {
Application::<Prod>::default().run()
fn main() {
match Application::<Prod>::default().run() {
Ok(_) => {}
Err(e) => {
eprintln!("{}", e);
std::process::exit(1);
}
}
}
fn parse_server_configuration<F>(