summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-15 18:11:14 +1300
committerSimon Glass <sjg@chromium.org>2021-03-27 15:04:31 +1300
commitdc2886b039af3add52edf370d12d05366fe59eb6 (patch)
tree832e7e25200cc54893bbffb2a722431b0d46cd8a /lib
parentb6da55976439c63e4f3037a65b0dde1656e7af6a (diff)
downloadu-boot-dc2886b039af3add52edf370d12d05366fe59eb6.tar.gz
u-boot-dc2886b039af3add52edf370d12d05366fe59eb6.tar.xz
u-boot-dc2886b039af3add52edf370d12d05366fe59eb6.zip
binman: Show a message when changing subnodes
This change seems important enough to warrant a visible message. Change the log_debug() to log_info(). Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/binman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/binman.c b/lib/binman.c
index 6040ec8924..530df6a4b4 100644
--- a/lib/binman.c
+++ b/lib/binman.c
@@ -128,8 +128,8 @@ int binman_select_subnode(const char *name)
if (!ofnode_valid(node))
return log_msg_ret("node", -ENOENT);
binman->image = node;
- log_debug("binman: Selected image subnode '%s'\n",
- ofnode_get_name(binman->image));
+ log_info("binman: Selected image subnode '%s'\n",
+ ofnode_get_name(binman->image));
return 0;
}