From cd17d8bb00be1ecb7c92ab13eb8b162807aefed9 Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Thu, 6 May 2021 08:48:45 -0700 Subject: [PATCH] qemurunner: change warning to info This information is useful, but should not be a warning level. [YOCTO #14382] Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/lib/oeqa/utils/qemurunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- 2.40.1