trivial: uefi: quiet down debugging messages

With how well fwupd UEFI updates work these days >99% of people
don't need to see messages about the capsule update running.
Those who have problems, this isn't going to help them.
This commit is contained in:
Mario Limonciello 2020-10-02 16:23:35 -05:00 committed by Mario Limonciello
parent 7d1267fd84
commit c5ea3a39f9

View File

@ -155,7 +155,7 @@ fwup_populate_update_table(FWUP_UPDATE_TABLE **updates, UINTN *n_updates_out)
continue;
}
fwup_info(L"Found update %s", variable_name);
fwup_debug(L"Found update %s", variable_name);
_cleanup_update_table FWUP_UPDATE_TABLE *update = fwup_malloc0(sizeof(FWUP_UPDATE_TABLE));
if (update == NULL)
return EFI_OUT_OF_RESOURCES;
@ -574,7 +574,7 @@ efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
if (cbd_data == NULL)
return EFI_OUT_OF_RESOURCES;
for (i = 0; i < n_updates; i++) {
fwup_info(L"Adding new capsule");
fwup_debug(L"Adding new capsule");
rc = fwup_add_update_capsule(updates[i], &capsules[j], &cbd_data[j], image);
if (EFI_ERROR(rc)) {
/* ignore a failing capsule */