]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemurunner: change warning to info
authorSaul Wold <Saul.Wold@windriver.com>
Thu, 6 May 2021 15:48:45 +0000 (08:48 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 6 May 2021 15:55:31 +0000 (16:55 +0100)
This information is useful, but should not be a warning level.

[YOCTO #14382]

Signed-off-by: Saul Wold <saul.wold@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/utils/qemurunner.py

index 3d3213d3d316f10214116eaa00ee13f14594bad2..69fee27511fbd06172e65a57077782cdc333f0df 100644 (file)
@@ -304,7 +304,7 @@ class QemuRunner:
                 self.logger.debug("QMP Port does not exist waiting for it to be created")
                 endtime = time.time() + self.runqemutime
                 while not os.path.exists(qmp_port) and self.is_alive() and time.time() < endtime:
-                   self.logger.warning("QMP port does not exist yet!")
+                   self.logger.info("QMP port does not exist yet!")
                    time.sleep(0.5)
                 if not os.path.exists(qmp_port) and self.is_alive():
                     self.logger.warning("QMP Port still does not exist but QEMU is alive")