From 130e5f8cfa267026711b62b7290e250c62ed0fa0 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 9 Apr 2008 01:28:43 +0200 Subject: [PATCH] loadparm: drop debug level in map_parameter from 0 to 1 we don't want to see this all the times in tests. Michael (cherry picked from commit fd43a4a1e05a2d259dc75bdcb4c0a3d9d8b41739) --- source/param/loadparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.11.4.GIT