From a913191cbdaa437945a8a1e2b452addd757c8762 Mon Sep 17 00:00:00 2001 From: Ken Chou Date: Thu, 27 Jun 2024 11:53:58 +0800 Subject: [PATCH] adjust verbose mode --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 43a2cc8..73c0d57 100644 --- a/src/main.rs +++ b/src/main.rs @@ -450,7 +450,7 @@ fn main() -> std::io::Result<()> { } // dir tree - if app_options.verbose >= 1 { + if app_options.verbose >= 2 { print_tree(path_list_to_tree(&operation_list, &app_options.target_path)); }