From af5ed0f257e1d050b43f97ba86a1bad863196e25 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 15 Dec 2007 07:39:33 -0800 Subject: [PATCH] Make push_dir() output where we are when verbosity is high. --- util.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util.c b/util.c index 74341930..2544b45e 100644 --- a/util.c +++ b/util.c @@ -898,6 +898,9 @@ int push_dir(const char *dir, int set_path_only) curr_dir_depth = count_dir_elements(curr_dir + module_dirlen); } + if (verbose >= 5) + rprintf(FINFO, "[%s] dir is now %s\n", who_am_i(), curr_dir); + return 1; } -- 2.34.1