Skip to content

Commit

Permalink
debug by default
Browse files Browse the repository at this point in the history
  • Loading branch information
randomairborne committed May 15, 2024
1 parent 92ffcb1 commit b14c74f
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 @@ -467,7 +467,7 @@ impl IntoResponse for Png {

fn start_tracing() {
let env_filter = tracing_subscriber::EnvFilter::builder()
.with_default_directive(concat!(env!("CARGO_PKG_NAME"), "=info").parse().unwrap())
.with_default_directive(concat!(env!("CARGO_PKG_NAME"), "=debug").parse().unwrap())
.with_env_var("LOG")
.from_env()
.expect("failed to parse env");
Expand Down

0 comments on commit b14c74f

Please sign in to comment.