From c5ffb2193a29f7c0f8d4306fe4dda322b32d7e2d Mon Sep 17 00:00:00 2001 From: Philipp Storz Date: Thu, 21 May 2015 08:27:38 +0200 Subject: [PATCH] Removed debug messages with level 0 --- src/win32/findlib/win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win32/findlib/win32.c b/src/win32/findlib/win32.c index 057c83b5f07..89712ef46ea 100644 --- a/src/win32/findlib/win32.c +++ b/src/win32/findlib/win32.c @@ -265,7 +265,7 @@ bool expand_win32_fileset(findFILESET *fileset) for (i = 0; i < fileset->include_list.size(); i++) { incexe = (findINCEXE *)fileset->include_list.get(i); foreach_dlist(node, &incexe->name_list) { - Dmsg1(000, "Checking %s\n", node->c_str()); + Dmsg1(100, "Checking %s\n", node->c_str()); if (bstrcmp(node->c_str(), "/")) { /* * Request for auto expansion but no support for it. @@ -292,7 +292,7 @@ bool expand_win32_fileset(findFILESET *fileset) if (*(bp + 2) == '\\') { *(bp + 2) = '/'; /* 'x:\' -> 'x:/' */ } - Dmsg1(000, "adding drive %s\n", bp); + Dmsg1(100, "adding drive %s\n", bp); incexe->name_list.append(new_dlistString(bp)); } if ((bp = strchr(bp, '\0'))) {