From c43e8c77df5d8a0c3c24a49bb4a5907897996ea3 Mon Sep 17 00:00:00 2001 From: Natty Date: Wed, 5 Feb 2025 20:23:48 +0100 Subject: [PATCH] Made the search path prints debug-level --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 7ccab2e..b2ee460 100644 --- a/src/main.rs +++ b/src/main.rs @@ -120,10 +120,10 @@ fn file_search_path(file_name: impl AsRef) -> Result { ] { let full_path = path.join(file_name); if full_path.is_file() { - info!("File found in: {}", full_path.display()); + debug!("File found in: {}", full_path.display()); return Ok(full_path); } else { - info!("No file found in: {}", full_path.display()); + debug!("No file found in: {}", full_path.display()); } }