diff --git a/src/cleaners.rs b/src/cleaners.rs index dc81713..21fb87e 100644 --- a/src/cleaners.rs +++ b/src/cleaners.rs @@ -179,7 +179,12 @@ impl Runner { } else { if args.dry_run { Box::new(|path| { - log::info!("(dry-run) would remove {}", path.display()); + let ty = if path.is_symlink() { + "symlink" + } else { + "regular file" + }; + log::info!("(dry-run) would remove {} {}", ty, path.display()); Ok(()) }) } else {