From: Aníbal Limón Date: Tue, 22 Sep 2015 16:56:23 +0000 (-0500) Subject: oeqa/utils/qemurunner.py: Remove duplicate message on LoggingThread start X-Git-Tag: 2015-10~307 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2ad7308ee7166641eff99f3b9fe6794de143f6bc;p=openembedded-core.git oeqa/utils/qemurunner.py: Remove duplicate message on LoggingThread start 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 --- 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):