summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorNathan Ringo <nathan@remexre.com>2024-11-24 11:06:20 -0600
committerNathan Ringo <nathan@remexre.com>2024-11-24 11:06:20 -0600
commit82849b062d180cc7e2061df78236c9073581af5a (patch)
tree785ddc50434d50e2cfe868e90a939cc989e1c196 /src/main.rs
parent6704dcb51c9de5c66102600d06ffe637fd2db7c1 (diff)
Get rid of the chattiest logs.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
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")?;