Skip to content

Commit 5e066a1

Browse files
author
Roland Peelen
committed
🔊 - Push logs to stdout by default
1 parent c49f942 commit 5e066a1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ struct Args {
6060
}
6161

6262
fn main() {
63-
env_logger::init();
63+
env_logger::builder()
64+
.target(env_logger::fmt::Target::Stdout)
65+
.init();
6466
let args = Args::parse();
6567

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

0 commit comments

Comments
 (0)