summaryrefslogtreecommitdiffstats
path: root/meta/lib
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:35 +0100
commit3d79025398d0e51e4b943ba1c814a74ad3a64c21 (patch)
treeb8188e393564a2034594695d4215087e01ad4f04 /meta/lib
parent6716a16efcccea84e5bd199083dd80d7ce09ecb8 (diff)
downloadpoky-3d79025398d0e51e4b943ba1c814a74ad3a64c21.tar.gz
qemurunner: change warning to info
This information is useful, but should not be a warning level. [YOCTO #14382] (From OE-Core rev: cd17d8bb00be1ecb7c92ab13eb8b162807aefed9) Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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:
304 self.logger.debug("QMP Port does not exist waiting for it to be created") 304 self.logger.debug("QMP Port does not exist waiting for it to be created")
305 endtime = time.time() + self.runqemutime 305 endtime = time.time() + self.runqemutime
306 while not os.path.exists(qmp_port) and self.is_alive() and time.time() < endtime: 306 while not os.path.exists(qmp_port) and self.is_alive() and time.time() < endtime:
307 self.logger.warning("QMP port does not exist yet!") 307 self.logger.info("QMP port does not exist yet!")
308 time.sleep(0.5) 308 time.sleep(0.5)
309 if not os.path.exists(qmp_port) and self.is_alive(): 309 if not os.path.exists(qmp_port) and self.is_alive():
310 self.logger.warning("QMP Port still does not exist but QEMU is alive") 310 self.logger.warning("QMP Port still does not exist but QEMU is alive")