mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00
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>
This commit is contained in:
parent
6716a16efc
commit
3d79025398
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue
Block a user