From 802c486fd0913e9fe58ae7ff72df135f99712358 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 4 Jan 2013 11:07:48 -0800 Subject: [PATCH] config: change default log_max_recent to 10,000 Commit c34e38bcdc0460219d19b21ca7a0554adf7f7f84 meant to do this but got the wrong number of zeros. Signed-off-by: Sage Weil --- src/common/config_opts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config_opts.h b/src/common/config_opts.h index c3d8c2c9d06c0..0830346d46243 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -32,7 +32,7 @@ OPTION(max_open_files, OPT_LONGLONG, 0) OPTION(log_file, OPT_STR, "/var/log/ceph/$cluster-$name.log") OPTION(log_max_new, OPT_INT, 1000) -OPTION(log_max_recent, OPT_INT, 100000) +OPTION(log_max_recent, OPT_INT, 10000) OPTION(log_to_stderr, OPT_BOOL, true) OPTION(err_to_stderr, OPT_BOOL, true) OPTION(log_to_syslog, OPT_BOOL, false) -- 2.39.5