summaryrefslogtreecommitdiff
path: root/src/run.rs
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2026-06-07 17:40:25 +0300
committerA Farzat <a@farzat.xyz>2026-06-07 17:40:25 +0300
commit8e7af6623d2f77aad77d346498e79fb83594d23e (patch)
tree0e3c6b37f8799758a7d6131ad383587adad147ba /src/run.rs
parent697167a1abe9d31f97dc4645183b8142e5cc383d (diff)
downloadrepo2markdown-8e7af6623d2f77aad77d346498e79fb83594d23e.tar.gz
repo2markdown-8e7af6623d2f77aad77d346498e79fb83594d23e.zip
Standardize format in Logger and add Verbose level
I kind of want verbose level now as I want to know which files got included.
Diffstat (limited to 'src/run.rs')
-rw-r--r--src/run.rs2
1 files changed, 1 insertions, 1 deletions
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<R: Read, W: Write>(
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;