From: Eric Biggers Date: Wed, 27 Mar 2013 03:43:19 +0000 (-0500) Subject: Fix debugging statements X-Git-Tag: v1.3.2~4 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=ad01b10ddbd18b3a29cfd5f3df0db6245108b8c9 Fix debugging statements --- diff --git a/src/add_image.c b/src/add_image.c index da11060b..ac6be4d1 100644 --- a/src/add_image.c +++ b/src/add_image.c @@ -501,11 +501,11 @@ match_pattern(const tchar *path, #endif ) == 0) { - WARNING("\"%"TS"\" matches the pattern \"%"TS"\"", + DEBUG("\"%"TS"\" matches the pattern \"%"TS"\"", string, pat); return true; } else { - WARNING("\"%"TS"\" does not match the pattern \"%"TS"\"", + DEBUG2("\"%"TS"\" does not match the pattern \"%"TS"\"", string, pat); } }