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:
Simon Glass 2021-03-15 18:11:14 +13:00
parent b6da559764
commit dc2886b039
1 changed files with 2 additions and 2 deletions

View 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;
}