From 48184e43910b2c6692f7bc8ce7b64d0194396639 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 22 Jun 2018 19:46:13 +0200 Subject: [PATCH] bootctl: downgrade to log messages that aren't actually errors --- src/boot/bootctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.3