This log message is shown pretty regular at boot in various scenarios
(such as CI builds), and it's not a reason for any concern, it's just the
immediate effect of explicit configuration. Hence let's downgrade from
LOG_NOTICE to LOG_INFO so that it is still usually in the boot output,
but not particularly highlighted, since there's really no reason to.
/* Don't even consider resuming outside of initrd. */
if (!in_initrd()) {
- log_debug("Not running in an initrd, quitting.");
+ log_debug("Not running in an initrd, exiting.");
return 0;
}
log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
if (arg_noresume) {
- log_notice("Found \"noresume\" on the kernel command line, quitting.");
+ log_info("Found \"noresume\" on the kernel command line, exiting.");
return 0;
}