aboutsummaryrefslogtreecommitdiff
path: root/src/directory_scanner.c
diff options
context:
space:
mode:
authorThorsten Töpper <atsutane@freethoughts.de>2026-03-01 19:30:09 +0100
committerThorsten Töpper <atsutane@freethoughts.de>2026-03-01 19:30:09 +0100
commit951ba68794bc228e00c40d36cca44c65da69603c (patch)
treeeb36035362a55b2a3a5fe3244e741d186f00753f /src/directory_scanner.c
parent97accf560f501677bc0a5432a85e6f6fd1f16b3b (diff)
downloadduplicate_finder-951ba68794bc228e00c40d36cca44c65da69603c.tar.gz
duplicate_finder-951ba68794bc228e00c40d36cca44c65da69603c.tar.bz2
Be more verbose when scanning.
Diffstat (limited to 'src/directory_scanner.c')
-rw-r--r--src/directory_scanner.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/directory_scanner.c b/src/directory_scanner.c
index 0ae1e31..0f2d64c 100644
--- a/src/directory_scanner.c
+++ b/src/directory_scanner.c
@@ -101,6 +101,9 @@ int traverse_directory_tree(const char *starting_point) {
/* In case there are still entries on an existing pstack, take them with you */
while (tmp != NULL) {
+ if (! option_quiet) {
+ LOGERR("Read directory %s\n", tmp);
+ }
DBGTRC("DEBUG: process directory %s next\n", tmp);
rc = process_directory(tmp);
if (rc < 0) { return -1; }