chore: change the default logging directives to be more useful

This commit is contained in:
2026-04-02 00:11:49 -04:00
parent b3936a79b6
commit 7f569629db

View File

@@ -62,7 +62,7 @@ struct AppArgs {
#[derive(Parser)] #[derive(Parser)]
struct LoggingArgs { struct LoggingArgs {
#[arg(long = "logging-directives", env = "RUST_LOG", default_value = "info")] #[arg(long = "logging-directives", env = "RUST_LOG", default_value = "warn,fomo_reducer=debug")]
env_filter: EnvFilter, env_filter: EnvFilter,
} }