From: Michael Adam Date: Tue, 8 Apr 2008 23:28:43 +0000 (+0200) Subject: loadparm: drop debug level in map_parameter from 0 to 1 X-Git-Tag: samba-3.3.0pre1~2775 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd43a4a1e05a2d259dc75bdcb4c0a3d9d8b41739;p=thirdparty%2Fsamba.git loadparm: drop debug level in map_parameter from 0 to 1 we don't want to see this all the times in tests. Michael --- diff --git a/source/param/loadparm.c b/source/param/loadparm.c index 8b6e431270d..ccc24b8837c 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -6064,7 +6064,7 @@ static int map_parameter(const char *pszParmName) /* Warn only if it isn't parametric option */ if (strchr(pszParmName, ':') == NULL) - DEBUG(0, ("Unknown parameter encountered: \"%s\"\n", pszParmName)); + DEBUG(1, ("Unknown parameter encountered: \"%s\"\n", pszParmName)); /* We do return 'fail' for parametric options as well because they are stored in different storage */