From 92f52469a93a6648c2b0aa6d740f047f19d6a530 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 9 Apr 2008 01:28:43 +0200 Subject: loadparm: drop debug level in map_parameter from 0 to 1 we don't want to see this all the times in tests. Michael (This used to be commit fd43a4a1e05a2d259dc75bdcb4c0a3d9d8b41739) --- source3/param/loadparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 8b6e431270..ccc24b8837 100644 --- a/source3/param/loadparm.c +++ b/source3/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 */ -- cgit