Skip to content

Commit

Permalink
fix: try init logger without error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilerd committed Jan 30, 2025
1 parent 06bc49c commit a351cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gotcha/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub trait GotchaApp: Sized + Send + Sync {
.with_env_var("RUST_LOG")
.from_env_lossy(),
)
.try_init()?;
.try_init().ok();
Ok(())
}

Expand Down

0 comments on commit a351cc5

Please sign in to comment.