From e092990e17c45916986c9870300fdd9d1ee98834 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Wed, 26 Oct 2022 09:32:38 -0400 Subject: [PATCH] Removed line for debugging --- src/settings.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/settings.rs b/src/settings.rs index 4ccf1a2..03e7957 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -5,8 +5,6 @@ pub fn load_config() -> Config { let global_config_path: String = find_global_config_path(); let home_config_path: String = find_home_config_path(); - println!("{}", Path::new(&global_config_path).exists()); - let settings = Config::builder() // Add in `./Settings.toml` .add_source(config::File::with_name(&global_config_path).required(false))