diff options
| author | seth <[email protected]> | 2024-05-27 05:23:34 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-05-27 05:23:34 -0400 |
| commit | 5e23c92215d7db92b7e998d9dc1c2dc8a3329166 (patch) | |
| tree | 538f5c2f81474dd5baec0ea42c6fd46653ca4ff2 /src | |
| parent | 309fdfdc7ce195e1f9b703bef90a08b150695c1b (diff) | |
logging: use correct module name in RUST_LOG
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 3a604ba..83b2e58 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,7 +9,7 @@ mod http; fn init_logging() { let fmt_layer = tracing_subscriber::fmt::layer().pretty(); let env_filter = tracing_subscriber::EnvFilter::try_from_default_env() - .unwrap_or_else(|_| "nixpkgs_discord_tracker=info,warn".into()); + .unwrap_or_else(|_| "nixpkgs_tracker_bot=info,warn".into()); tracing_subscriber::registry() .with(fmt_layer) |
