From: Sage Weil Date: Mon, 11 Mar 2013 23:25:16 +0000 (-0700) Subject: log: drop default 'log max recent' from 100k -> 10k X-Git-Tag: v0.60~103 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c021c5ccf0c063cccd7314964420405cea6406de;p=ceph.git log: drop default 'log max recent' from 100k -> 10k Use less memory. Signed-off-by: Sage Weil --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 03c2283badad..616d73dcf681 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -33,7 +33,7 @@ OPTION(fatal_signal_handlers, OPT_BOOL, true) OPTION(log_file, OPT_STR, "/var/log/ceph/$cluster-$name.log") // default changed by common_preinit() OPTION(log_max_new, OPT_INT, 1000) // default changed by common_preinit() -OPTION(log_max_recent, OPT_INT, 100000) // default changed by common_preinit() +OPTION(log_max_recent, OPT_INT, 10000) // default changed by common_preinit() OPTION(log_to_stderr, OPT_BOOL, true) // default changed by common_preinit() OPTION(err_to_stderr, OPT_BOOL, true) // default changed by common_preinit() OPTION(log_to_syslog, OPT_BOOL, false)