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 authored and rolandpeelen committed Nov 15, 2024
1 parent 007511f commit adf4f28
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 adf4f28

Please sign in to comment.