X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/a7725e6df9d1ddd69fd4de82d5d703fa073424fa..37c817eb8159366539d4a9c69bd78e74d4941c06:/exclude.c diff --git a/exclude.c b/exclude.c index 702a52ec..ee8016fd 100644 --- a/exclude.c +++ b/exclude.c @@ -102,7 +102,7 @@ void free_exclude_list(struct exclude_struct ***listp) struct exclude_struct **list = *listp; if (verbose > 2) - rprintf(FINFO,"clearing exclude list\n"); + rprintf(FINFO, "[%s] clearing exclude list\n", who_am_i()); if (!list) return; @@ -203,12 +203,14 @@ static void report_exclude_result(char const *name, * then it is stripped out by make_exclude. So as a special * case we add it back in here. */ - if (verbose >= 2) - rprintf(FINFO, "%s %s %s because of pattern %s%s\n", + if (verbose >= 2) { + rprintf(FINFO, "[%s] %s %s %s because of pattern %s%s\n", + who_am_i(), ent->include ? "including" : "excluding", name_is_dir ? "directory" : "file", name, ent->pattern, ent->directory ? "/" : ""); + } } @@ -250,7 +252,8 @@ void add_exclude(struct exclude_struct ***listp, const char *pattern, int includ out_of_memory("add_exclude"); if (verbose > 2) { - rprintf(FINFO,"add_exclude(%s,%s)\n",pattern, + rprintf(FINFO, "[%s] add_exclude(%s,%s)\n", + who_am_i(), pattern, include ? "include" : "exclude"); }