Message ID | 20241111131604.364308-1-mikko.rapeli@linaro.org |
---|---|
State | New |
Headers | show |
Series | [1/3] uki.bbclass: fix debug print logging level | expand |
diff --git a/meta/classes-recipe/uki.bbclass b/meta/classes-recipe/uki.bbclass index d4f25c7fd2..441e4a7f8e 100644 --- a/meta/classes-recipe/uki.bbclass +++ b/meta/classes-recipe/uki.bbclass @@ -189,7 +189,7 @@ python do_uki() { ukify_cmd += " %s" % (output) # Run the ukify command - bb.debug("uki: running command: %s" % (ukify_cmd)) + bb.debug(2, "uki: running command: %s" % (ukify_cmd)) bb.process.run(ukify_cmd, shell=True) } addtask uki after do_rootfs before do_deploy do_image_complete do_image_wic
Missing/unknown log level triggers a warning. Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> --- meta/classes-recipe/uki.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)