Remove erroneous extra colon in log output
This commit is contained in:
parent
1b6613c280
commit
78c017d51d
|
@ -62,13 +62,13 @@ class VMConsoleWatcherInstance(object):
|
||||||
def start(self):
|
def start(self):
|
||||||
self.thread_stopper.clear()
|
self.thread_stopper.clear()
|
||||||
self.thread = Thread(target=self.run, args=(), kwargs={})
|
self.thread = Thread(target=self.run, args=(), kwargs={})
|
||||||
self.logger.out('Starting VM log parser', state='i', prefix='Domain {}:'.format(self.domuuid))
|
self.logger.out('Starting VM log parser', state='i', prefix='Domain {}'.format(self.domuuid))
|
||||||
self.thread.start()
|
self.thread.start()
|
||||||
|
|
||||||
# Stop execution thread
|
# Stop execution thread
|
||||||
def stop(self):
|
def stop(self):
|
||||||
if self.thread and self.thread.isAlive():
|
if self.thread and self.thread.isAlive():
|
||||||
self.logger.out('Stopping VM log parser', state='i', prefix='Domain {}:'.format(self.domuuid))
|
self.logger.out('Stopping VM log parser', state='i', prefix='Domain {}'.format(self.domuuid))
|
||||||
self.thread_stopper.set()
|
self.thread_stopper.set()
|
||||||
# Do one final flush
|
# Do one final flush
|
||||||
self.update()
|
self.update()
|
||||||
|
|
Loading…
Reference in New Issue