From 0206b82a94d2de85527a0dd3a59bff116dccbbeb Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Mon, 30 Sep 2024 22:00:23 -0400 Subject: [PATCH] core: config: remove stray print statement This print statement was for debugging, but configuration works properly now. Remove the stray statement. --- src/core/config.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/config.rs b/src/core/config.rs index 853f53f..fd88fcf 100644 --- a/src/core/config.rs +++ b/src/core/config.rs @@ -78,8 +78,6 @@ impl Configuration { } } - println!("{:?}", cfg); - Ok(cfg) }