Skip to content

Commit

Permalink
fix: fix default log level back to info (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin271 committed Jan 9, 2024
1 parent 3465294 commit a4a5fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ fn main() -> anyhow::Result<()> {
human_panic::setup_panic!();

let env_filter = tracing_subscriber::EnvFilter::builder()
.with_default_directive("inlyne=trace".parse()?)
.with_default_directive("inlyne=info".parse()?)
.with_env_var("INLYNE_LOG")
.from_env()?;
tracing_subscriber::registry()
Expand Down

0 comments on commit a4a5fc6

Please sign in to comment.