diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2015-09-22 11:56:23 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-23 09:53:21 +0100 |
commit | 524ddd86c305af1b029c1773affe5cebffc62b28 (patch) | |
tree | 272a20606f95462e1ef40850e1d33dc816444f5a /meta/lib | |
parent | 376ce717bd3e308ec67c8b4d7996d24885c02505 (diff) | |
download | poky-524ddd86c305af1b029c1773affe5cebffc62b28.tar.gz |
oeqa/utils/qemurunner.py: Remove duplicate message on LoggingThread start
The Starting logging thread message is also executed on run() inside
LoggingThread class.
(From OE-Core rev: 2ad7308ee7166641eff99f3b9fe6794de143f6bc)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 1 |
1 files changed, 0 insertions, 1 deletions
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: | |||
186 | logger.info("Target IP: %s" % self.ip) | 186 | logger.info("Target IP: %s" % self.ip) |
187 | logger.info("Server IP: %s" % self.server_ip) | 187 | logger.info("Server IP: %s" % self.server_ip) |
188 | 188 | ||
189 | logger.info("Starting logging thread") | ||
190 | self.thread = LoggingThread(self.log, threadsock, logger) | 189 | self.thread = LoggingThread(self.log, threadsock, logger) |
191 | self.thread.start() | 190 | self.thread.start() |
192 | if not self.thread.connection_established.wait(self.boottime): | 191 | if not self.thread.connection_established.wait(self.boottime): |