Skip to content

Commit

Permalink
fix: fixed wrong env_logger config
Browse files Browse the repository at this point in the history
  • Loading branch information
komar007 committed Sep 14, 2024
1 parent 4ca3c19 commit fad5994
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 @@ -27,7 +27,7 @@ fn main() -> ExitCode {
}

fn entrypoint() -> Result<(), String> {
env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("none")).init();
env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("off")).init();
let config = Config::parse();
let framework_res = with_daemon(
PID_FILENAME,
Expand Down

0 comments on commit fad5994

Please sign in to comment.