From 78c017d51d140079e9f56c1029e94845ad142c1a Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 20 Dec 2020 16:06:35 -0500 Subject: [PATCH] Remove erroneous extra colon in log output --- node-daemon/pvcnoded/VMConsoleWatcherInstance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node-daemon/pvcnoded/VMConsoleWatcherInstance.py b/node-daemon/pvcnoded/VMConsoleWatcherInstance.py index 1f7b3537..df5ba86f 100644 --- a/node-daemon/pvcnoded/VMConsoleWatcherInstance.py +++ b/node-daemon/pvcnoded/VMConsoleWatcherInstance.py @@ -62,13 +62,13 @@ class VMConsoleWatcherInstance(object): def start(self): self.thread_stopper.clear() 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() # Stop execution thread def stop(self): 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() # Do one final flush self.update()