From 77d0650aef5b13d52c908bff69e83d190464d9d4 Mon Sep 17 00:00:00 2001 From: postscriptum Date: Thu, 3 Jul 2025 12:35:42 +0300 Subject: [PATCH] fix debug message --- src/nex.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nex.rs b/src/nex.rs index d36020e..a4bcafb 100644 --- a/src/nex.rs +++ b/src/nex.rs @@ -225,6 +225,7 @@ impl Nex { } pub fn clean(&self, name: &str, ignore: HashSet) -> Result { + println!("\t\tcleanup..."); let mut r = Clean::default(); for entry in walkdir::WalkDir::new(PathBuf::from(self.users.get(name).unwrap())).follow_links(false) @@ -232,7 +233,7 @@ impl Nex { let e = entry?; let p = e.path(); let s = p.to_string_lossy(); - println!("check `{s}`..."); + println!("\t\tcheck `{s}`..."); if ignore.contains(p) { continue; }