Skip to content

Commit

Permalink
fix(daemon): turn off trace logging (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
azenla committed Aug 21, 2024
1 parent 151b43e commit 1647a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/daemon/bin/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use kratad::command::DaemonCommand;
async fn main() -> Result<()> {
let mut builder = env_logger::Builder::new();
builder
.filter_level(LevelFilter::Trace)
.filter_level(LevelFilter::Info)
.parse_default_env()
.filter(Some("backhand::filesystem::writer"), LevelFilter::Warn);

Expand Down

0 comments on commit 1647a07

Please sign in to comment.