From 0cab6f7db8f59de92546183e4551e5273285e458 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 20 Oct 2018 01:54:52 +0900 Subject: [PATCH] firstboot: include error cause in log message --- src/firstboot/firstboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index 552e10d1579..6a939aec046 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -952,7 +952,7 @@ int main(int argc, char *argv[]) { r = proc_cmdline_get_bool("systemd.firstboot", &enabled); if (r < 0) { - log_error_errno(r, "Failed to parse systemd.firstboot= kernel command line argument, ignoring."); + log_error_errno(r, "Failed to parse systemd.firstboot= kernel command line argument, ignoring: %m"); goto finish; } if (r > 0 && !enabled) { -- 2.47.3