summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2026-02-24 15:44:38 -0600
committerTom Rini <trini@konsulko.com>2026-02-26 16:15:22 -0600
commita89874e607344aef602bfd13cdca1d0ccc23d427 (patch)
tree0f341b98bdb9dcff31fc581dbf87b5e81f56ca33
parentacdf53bf7509a4f8aae8c9954dc6122ece013fd6 (diff)
bloblist: Demote not finding a bloblist to a debug
The message about not finding a bloblist will quite often be seen at least once, and is non-fatal. Demote this to a log_debug message from a log_warning message. Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--common/bloblist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bloblist.c b/common/bloblist.c
index d5fa62249a9..910ca926259 100644
--- a/common/bloblist.c
+++ b/common/bloblist.c
@@ -548,8 +548,8 @@ int bloblist_init(void)
ret = bloblist_check(addr, size);
if (ret)
- log_warning("Bloblist at %lx not found (err=%d)\n",
- addr, ret);
+ log_debug("Bloblist at %lx not found (err=%d)\n",
+ addr, ret);
else
/* Get the real size */
size = gd->bloblist->total_size;