1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-22 17:35:35 +03:00

log: don't downgrade log level in non-PID 1 if "quiet" is passed on kernel cmdline

"debug" should apply to all tools, but "quiet" only to PID1.
This commit is contained in:
Lennart Poettering 2014-06-17 01:05:39 +02:00
parent 8f294b45cb
commit d7b15e0a01
Notes: Zbigniew Jędrzejewski-Szmek 2014-06-21 10:24:36 -04:00
Backport: fix
2 changed files with 5 additions and 3 deletions

View File

@ -412,11 +412,16 @@ static int parse_proc_cmdline_item(const char *key, const char *value) {
}
} else if (streq(key, "quiet") && !value) {
log_set_max_level(LOG_NOTICE);
if (arg_show_status == _SHOW_STATUS_UNSET)
arg_show_status = SHOW_STATUS_AUTO;
} else if (streq(key, "debug") && !value) {
log_set_max_level(LOG_DEBUG);
if (detect_container(NULL) > 0)
log_set_target(LOG_TARGET_CONSOLE);

View File

@ -878,9 +878,6 @@ void log_parse_environment(void) {
if (l == 5 && startswith(w, "debug")) {
log_set_max_level(LOG_DEBUG);
break;
} else if (l == 5 && startswith(w, "quiet")) {
log_set_max_level(LOG_WARNING);
break;
}
}
}