summaryrefslogtreecommitdiff
path: root/src/core/main.c
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2014-04-05 13:59:01 -0400
committerKay Sievers <kay@vrfy.org>2014-04-06 00:10:18 -0400
commitb2103dccb354de3f38c49c14ccb637bdf665e40f (patch)
treebbf78678824ecb31585d8945dfef229a1846b5fd /src/core/main.c
parentb65f24238b0627143916a9c7f8315483a9666676 (diff)
reduce the amount of messages logged to /dev/kmsg when "debug" is specified
Diffstat (limited to 'src/core/main.c')
-rw-r--r--src/core/main.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/core/main.c b/src/core/main.c
index 41605ee8d5..feabead96d 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -412,18 +412,13 @@ static int parse_proc_cmdline_item(const char *key, const char *value) {
}
} else if (streq(key, "quiet") && !value) {
-
if (arg_show_status == _SHOW_STATUS_UNSET)
arg_show_status = SHOW_STATUS_AUTO;
} else if (streq(key, "debug") && !value) {
-
- /* Log to kmsg, the journal socket will fill up before the
- * journal is started and tools running during that time
- * will block with every log message for for 60 seconds,
- * before they give up. */
log_set_max_level(LOG_DEBUG);
- log_set_target(detect_container(NULL) > 0 ? LOG_TARGET_CONSOLE : LOG_TARGET_KMSG);
+ if (detect_container(NULL) > 0)
+ log_set_target(LOG_TARGET_CONSOLE);
} else if (!in_initrd() && !value) {
unsigned i;