diff options
| author | A Farzat <a@farzat.xyz> | 2026-06-07 17:40:25 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-06-07 17:40:25 +0300 |
| commit | 8e7af6623d2f77aad77d346498e79fb83594d23e (patch) | |
| tree | 0e3c6b37f8799758a7d6131ad383587adad147ba /src/run.rs | |
| parent | 697167a1abe9d31f97dc4645183b8142e5cc383d (diff) | |
| download | repo2markdown-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.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
