From 8e7af6623d2f77aad77d346498e79fb83594d23e Mon Sep 17 00:00:00 2001 From: A Farzat Date: Sun, 7 Jun 2026 17:40:25 +0300 Subject: Standardize format in Logger and add Verbose level I kind of want verbose level now as I want to know which files got included. --- src/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/run.rs') diff --git a/src/run.rs b/src/run.rs index 097ace3..c276d7c 100644 --- a/src/run.rs +++ b/src/run.rs @@ -39,7 +39,7 @@ pub fn run( let normalized_path = normalizer.normalize(path)?; if !seen_paths.insert(normalized_path.relative.clone()) { logger.warn(format!( - "Warning: skipping duplicate file: {}", + "skipping duplicate file: {}", display_path(&normalized_path.relative) )); continue; -- cgit v1.3.1