From: Simon Glass Date: Mon, 15 Mar 2021 05:11:14 +0000 (+1300) Subject: binman: Show a message when changing subnodes X-Git-Tag: v2021.10~246^2~3^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc2886b039af3add52edf370d12d05366fe59eb6;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/lib/binman.c b/lib/binman.c index 6040ec8..530df6a 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; }