diff --git a/src/main.rs b/src/main.rs index 544aa64..63a99c5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,6 +26,9 @@ async fn main() { .init(); if let Err(e) = Args::parse().run().await { + // NOTE: We use tracing for errors here for consistent + // output between returned errors, and errors that + // may be logged while the program is running. error!("{e}"); exit(1); }