efi_loader: Reduce efi_tcg2 logging statement
authorMasahisa Kojima <masahisa.kojima@linaro.org>
Tue, 9 Nov 2021 11:35:53 +0000 (20:35 +0900)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sat, 20 Nov 2021 09:53:00 +0000 (10:53 +0100)
log_info() is used for the debug level logging statement
which should use log_debug() instead. Convert it to reduce the
log output.

Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
lib/efi_loader/efi_tcg2.c

index 189e4a5..2771fd6 100644 (file)
@@ -1472,7 +1472,7 @@ static efi_status_t tcg2_measure_boot_variable(struct udevice *dev)
                                      &var_data_size);
 
                if (!bootvar) {
-                       log_info("%ls not found\n", boot_name);
+                       log_debug("%ls not found\n", boot_name);
                        continue;
                }