diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-11-24 11:06:20 -0600 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-11-24 11:06:20 -0600 |
commit | 82849b062d180cc7e2061df78236c9073581af5a (patch) | |
tree | 785ddc50434d50e2cfe868e90a939cc989e1c196 /src/main.rs | |
parent | 6704dcb51c9de5c66102600d06ffe637fd2db7c1 (diff) |
Get rid of the chattiest logs.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 3bceb37..71f2d5d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -64,6 +64,7 @@ async fn main() -> Result<()> { }; SimpleLogger::new() .with_level(log_level) + .with_module_level("tracing::span", LevelFilter::Warn) .init() .context("Failed to configure logger")?; |