From 2ad7308ee7166641eff99f3b9fe6794de143f6bc Mon Sep 17 00:00:00 2001 From: Aníbal Limón Date: Tue, 22 Sep 2015 11:56:23 -0500 Subject: oeqa/utils/qemurunner.py: Remove duplicate message on LoggingThread start MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Starting logging thread message is also executed on run() inside LoggingThread class. Signed-off-by: Aníbal Limón Signed-off-by: Richard Purdie --- meta/lib/oeqa/utils/qemurunner.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 6edd37477e..0357f99d92 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py @@ -186,7 +186,6 @@ class QemuRunner: logger.info("Target IP: %s" % self.ip) logger.info("Server IP: %s" % self.server_ip) - logger.info("Starting logging thread") self.thread = LoggingThread(self.log, threadsock, logger) self.thread.start() if not self.thread.connection_established.wait(self.boottime): -- cgit 1.2.3-korg