Skip to content

Commit

Permalink
style: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
0xrusowsky committed Dec 16, 2024
1 parent a0de7f2 commit 3b38658
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions r55/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ pub fn initialize_logger() {
let log_level = std::env::var("RUST_LOG").unwrap_or("INFO".to_owned());
let tracing_sub = tracing_subscriber::fmt()
.with_max_level(tracing::Level::DEBUG)
.with_env_filter(tracing_subscriber::EnvFilter::new(&format!(
"{}",
log_level
)))
.with_env_filter(tracing_subscriber::EnvFilter::new(log_level))
.with_target(false)
.finish();
tracing::subscriber::set_global_default(tracing_sub)
Expand Down

0 comments on commit 3b38658

Please sign in to comment.