From: Lennart Poettering Date: Fri, 22 Jun 2018 17:46:13 +0000 (+0200) Subject: bootctl: downgrade to log messages that aren't actually errors X-Git-Tag: v240~610^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48184e43910b2c6692f7bc8ce7b64d0194396639;p=thirdparty%2Fsystemd.git bootctl: downgrade to log messages that aren't actually errors --- diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index 7c072f88622..5860e3cee35 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -181,13 +181,13 @@ static int status_binaries(const char *esp_path, sd_id128_t partition) { r = enumerate_binaries(esp_path, "EFI/systemd", NULL); if (r == 0) - log_error("systemd-boot not installed in ESP."); + log_info("systemd-boot not installed in ESP."); else if (r < 0) return r; r = enumerate_binaries(esp_path, "EFI/BOOT", "boot"); if (r == 0) - log_error("No default/fallback boot loader installed in ESP."); + log_info("No default/fallback boot loader installed in ESP."); else if (r < 0) return r;