From 46435b37962b5f7b643b24027ad327c08052231e Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Sun, 17 Aug 2025 21:00:17 -0700 Subject: [PATCH] don't info log the config --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 792cea3..70b11c9 100644 --- a/src/config.rs +++ b/src/config.rs @@ -88,7 +88,7 @@ impl Config { .map_err(Box::new)? // boxed because the error size from figment is large }; - log::info!("using config: {config:?}"); + log::debug!("using config: {config:?}"); Ok(config) }