]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
bootctl: downgrade to log messages that aren't actually errors
authorLennart Poettering <lennart@poettering.net>
Fri, 22 Jun 2018 17:46:13 +0000 (19:46 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 8 Oct 2018 19:40:44 +0000 (21:40 +0200)
src/boot/bootctl.c

index 7c072f88622c218e3687f6bbb1061c212efff265..5860e3cee356b7f40053bcc1f264f7f0032592a7 100644 (file)
@@ -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;