diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -20,6 +20,8 @@ pub fn configure_logger(quiet: u8, verbose: u8) -> Result<()> { SimpleLogger::new() .with_level(level) + .with_module_level("serenity::gateway::shard", LevelFilter::Warn) + .with_module_level("serenity::http::ratelimiting", LevelFilter::Warn) .with_module_level("tracing::span", LevelFilter::Warn) .init() .context("failed to configure logger") |