Skip to content

Commit

Permalink
🔊 - Push logs to stdout by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland Peelen committed Jun 26, 2024
1 parent c49f942 commit 5e066a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ struct Args {
}

fn main() {
env_logger::init();
env_logger::builder()
.target(env_logger::fmt::Target::Stdout)
.init();
let args = Args::parse();

let command = args.command.unwrap_or(Command::Build);
Expand Down

0 comments on commit 5e066a1

Please sign in to comment.