efivars: downgrade log level in systemd_efi_options_efivarfs_if_newer()

The only caller logs anyway, let's avoid duplicate logging above
LOG_DEBUG.
This commit is contained in:
Lennart Poettering
2022-03-22 16:34:39 +01:00
parent 83fe0be170
commit afd1a45a16

View File

@@ -439,7 +439,8 @@ int systemd_efi_options_efivarfs_if_newer(char **line) {
r = read_efi_options_variable(line);
if (r < 0)
return log_warning_errno(r, "Failed to read SystemdOptions EFI variable: %m");
return log_debug_errno(r, "Failed to read SystemdOptions EFI variable: %m");
return 0;
}
#endif