Skip to content

Commit 4058b96

Browse files
committed
fix(go-runner): use info log filter by default
1 parent fafd312 commit 4058b96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go-runner/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::path::Path;
33

44
fn main() -> anyhow::Result<()> {
55
env_logger::builder()
6-
.parse_env("CODSPEED_LOG")
6+
.parse_env(env_logger::Env::new().filter_or("CODSPEED_LOG", "info"))
77
.filter_module("handlebars", log::LevelFilter::Off)
88
.format_timestamp(None)
99
.init();

0 commit comments

Comments
 (0)