mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
b6da559764
commit
dc2886b039
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue