diff options
author | Michael Adam <obnox@samba.org> | 2008-04-09 01:28:43 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-04-10 01:29:02 +0200 |
commit | 92f52469a93a6648c2b0aa6d740f047f19d6a530 (patch) | |
tree | 4a34bb1c4f8255a0d7c59e1c53c53a07e93eaaf6 /source3/param | |
parent | 6dd73c2866ad01e092d9879ac23b75467250fe71 (diff) | |
download | samba-92f52469a93a6648c2b0aa6d740f047f19d6a530.tar.gz samba-92f52469a93a6648c2b0aa6d740f047f19d6a530.tar.bz2 samba-92f52469a93a6648c2b0aa6d740f047f19d6a530.zip |
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)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |