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: lucaceresoli/bug-15201-perf-libtraceevent-missing~28820 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ad7308ee7166641eff99f3b9fe6794de143f6bc;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 6edd37477e1..0357f99d923 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):