]> git.baikalelectronics.ru Git - uboot.git/commitdiff
binman: Show a message when changing subnodes
authorSimon Glass <sjg@chromium.org>
Mon, 15 Mar 2021 05:11:14 +0000 (18:11 +1300)
committerSimon Glass <sjg@chromium.org>
Sat, 27 Mar 2021 02:04:31 +0000 (15:04 +1300)
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>
lib/binman.c

index 6040ec89241f94fa58165e16d56313e923914c4e..530df6a4b4c9fca1ba6139acfe5d7e025a745724 100644 (file)
@@ -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;
 }