From 2f49aa0e40cec399b30a58576c7f9bb603d8d8fd Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Sat, 3 Dec 2016 12:29:22 -0800 Subject: [PATCH] Cosmetic changes to debug output --- src/config.rs | 2 +- src/index.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index a57bea0..33d7744 100644 --- a/src/config.rs +++ b/src/config.rs @@ -46,7 +46,7 @@ impl Config { root } }; - println!("Loading config from: {}", config_path.to_string_lossy()); + println!("Config file path: {}", config_path.to_string_lossy()); let mut config_file = fs::File::open(config_path)?; let mut config_file_content = String::new(); diff --git a/src/index.rs b/src/index.rs index 31892ee..0ad81bf 100644 --- a/src/index.rs +++ b/src/index.rs @@ -188,7 +188,7 @@ impl Index { let path = &config.path; - println!("Reading or creating index from {}", path.to_string_lossy()); + println!("Index file path: {}", path.to_string_lossy()); let index = Index { path: path.to_string_lossy().deref().to_string(),