summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaul Wold <Saul.Wold@windriver.com>2021-05-06 08:48:45 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-06 16:55:31 +0100
commitcd17d8bb00be1ecb7c92ab13eb8b162807aefed9 (patch)
treea7b432e73531f6328b310361aed877f790ea2876
parentbf2c6ea03d45742597275691b4c883044765c57e (diff)
downloadopenembedded-core-cd17d8bb00be1ecb7c92ab13eb8b162807aefed9.tar.gz
qemurunner: change warning to info
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>
-rw-r--r--meta/lib/oeqa/utils/qemurunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py
index 3d3213d3d3..69fee27511 100644
--- a/meta/lib/oeqa/utils/qemurunner.py
+++ b/meta/lib/oeqa/utils/qemurunner.py
@@ -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")