From: Anoop C S Date: Fri, 23 Nov 2018 08:41:45 +0000 (+0530) Subject: s3/testparm: Reduce debug level to 1 X-Git-Tag: tdb-1.3.17~543 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e99402235da3ab0ea77f0a68393294088939ab78;p=thirdparty%2Fsamba.git s3/testparm: Reduce debug level to 1 Adhere to what we document in manual page for testparm that default debug level is set to reasonable value 1. Signed-off-by: Anoop C S Reviewed-by: Ralph Boehme Reviewed-by: Andreas Schneider Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Thu Nov 29 11:52:22 CET 2018 on sn-devel-144 --- diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c index 88dfc42d492..7da2fa69765 100644 --- a/source3/utils/testparm.c +++ b/source3/utils/testparm.c @@ -666,11 +666,11 @@ static void do_per_share_checks(int s) smb_init_locale(); /* - * Set the default debug level to 2. + * Set the default debug level to 1. * Allow it to be overridden by the command line, * not by smb.conf. */ - lp_set_cmdline("log level", "2"); + lp_set_cmdline("log level", "1"); pc = poptGetContext(NULL, argc, argv, long_options, POPT_CONTEXT_KEEP_FIRST);