aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahisa Kojima <masahisa.kojima@linaro.org>2021-11-09 20:35:53 +0900
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2021-11-20 10:53:00 +0100
commit3961bd9b552bfb3c08664fb09f18744c6f691456 (patch)
tree6652b7fa57b21515701eae40190fe2e29cd38481
parente032cb2ac98d7085bec258dd19617409f0f70e90 (diff)
downloadu-boot-3961bd9b552bfb3c08664fb09f18744c6f691456.zip
u-boot-3961bd9b552bfb3c08664fb09f18744c6f691456.tar.gz
u-boot-3961bd9b552bfb3c08664fb09f18744c6f691456.tar.bz2
efi_loader: Reduce efi_tcg2 logging statement
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>
-rw-r--r--lib/efi_loader/efi_tcg2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_tcg2.c b/lib/efi_loader/efi_tcg2.c
index 189e4a5..2771fd6 100644
--- a/lib/efi_loader/efi_tcg2.c
+++ b/lib/efi_loader/efi_tcg2.c
@@ -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;
}