chiark / gitweb /
log to kmsg when "debug" is used on the kernel command line
authorKay Sievers <kay@vrfy.org>
Tue, 27 Aug 2013 16:25:06 +0000 (18:25 +0200)
committerKay Sievers <kay@vrfy.org>
Tue, 27 Aug 2013 16:25:06 +0000 (18:25 +0200)
src/core/main.c

index 8a73ad3cc798a29344d5bc63b2cf50d1cc22bbf4..0178f107200a300e7f38199204f2f39c5d61a00d 100644 (file)
@@ -401,9 +401,14 @@ static int parse_proc_cmdline_word(const char *word) {
 
         } else if (streq(word, "quiet"))
                 arg_show_status = false;
-        else if (streq(word, "debug"))
+        else if (streq(word, "debug")) {
+                /* 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);
-        else if (!in_initrd()) {
+                log_set_target(LOG_TARGET_KMSG);
+        } else if (!in_initrd()) {
                 unsigned i;
 
                 /* SysV compatibility */