From: Zbigniew Jędrzejewski-Szmek Date: Thu, 8 Mar 2018 09:19:26 +0000 (+0100) Subject: systemctl: raise level of log line about kernel loading X-Git-Tag: v239~532^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd086a014b0f07b1d6cb5fa3881d6a14cb10fd76;p=thirdparty%2Fsystemd.git systemctl: raise level of log line about kernel loading It's pretty important after all. Also include the actual kexecuted command in the log message, that's useful to debug if something goes wrong. --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 1e975a5f2f2..e00cbb2b125 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -3511,9 +3511,12 @@ static int load_kexec_kernel(void) { if (!options) return log_oom(); - log_debug("%s kexec kernel %s initrd %s options \"%s\".", - arg_dry_run ? "Would load" : "loading", - kernel, initrd, options); + log_full(arg_quiet ? LOG_DEBUG : LOG_INFO, + "%s "KEXEC" --load \"%s\" --append \"%s\"%s%s%s", + arg_dry_run ? "Would run" : "Running", + kernel, + options, + initrd ? " --initrd \"" : NULL, strempty(initrd), initrd ? "\"" : ""); if (arg_dry_run) return 0;