]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
config: -f just means foreground; do not change log output
authorSage Weil <sage@newdream.net>
Thu, 1 Jul 2010 18:01:18 +0000 (11:01 -0700)
committerSage Weil <sage@newdream.net>
Thu, 1 Jul 2010 18:01:18 +0000 (11:01 -0700)
Before it would set log_to_stdout = false, but the default might be true.

src/config.cc

index 1c4f54840fe79a85741df7bd2cefa806387ce3d9..9e1266813b9103f35790c801cadd4c26e246c7e0 100644 (file)
@@ -975,7 +975,7 @@ void parse_startup_config_options(std::vector<const char*>& args, const char *mo
       */
     } else if (isdaemon && CONF_ARG_EQ("foreground", 'f')) {
       g_conf.daemonize = false;
-      g_conf.log_to_stdout = false;
+      //g_conf.log_to_stdout = false;
     } else if (isdaemon && (CONF_ARG_EQ("id", 'i') || CONF_ARG_EQ("name", 'n'))) {
       CONF_SAFE_SET_ARG_VAL(&g_conf.id, OPT_STR);
     } else if (!isdaemon && (CONF_ARG_EQ("id", 'I') || CONF_ARG_EQ("name", 'n'))) {