diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-04-01 15:57:22 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-04-04 10:30:30 +1000 |
commit | 822e7e59678fe445e21152a4777fa9585cd376fe (patch) | |
tree | f7984f1ffe51a4ba0dba3e17f05c12446b9e4340 /source4/param | |
parent | 45e00ee68683695ed22b97b6396083fedd70c06f (diff) | |
download | samba-822e7e59678fe445e21152a4777fa9585cd376fe.tar.gz samba-822e7e59678fe445e21152a4777fa9585cd376fe.tar.bz2 samba-822e7e59678fe445e21152a4777fa9585cd376fe.zip |
s4-loadparm: be a bit less verbose about smb.conf processing
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/param')
-rw-r--r-- | source4/param/loadparm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index 93158f2c45..95460c6235 100644 --- a/source4/param/loadparm.c +++ b/source4/param/loadparm.c @@ -2047,7 +2047,7 @@ static bool do_section(const char *pszSectionName, void *userdata) /* check for multiple global sections */ if (lp_ctx->bInGlobalSection) { - DEBUG(3, ("Processing section \"[%s]\"\n", pszSectionName)); + DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName)); return true; } @@ -2061,7 +2061,7 @@ static bool do_section(const char *pszSectionName, void *userdata) if (bRetval) { /* We put this here to avoid an odd message order if messages are */ /* issued by the post-processing of a previous section. */ - DEBUG(2, ("Processing section \"[%s]\"\n", pszSectionName)); + DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName)); if ((lp_ctx->currentService = lpcfg_add_service(lp_ctx, lp_ctx->sDefault, pszSectionName)) |