Fix logging string

This commit is contained in:
croneter 2018-04-15 16:37:13 +02:00
parent 5f26692e0f
commit b4b05b70ec

View file

@ -52,7 +52,7 @@ class PlaybackStarter(Thread):
def run(self):
queue = state.COMMAND_PIPELINE_QUEUE
LOG.info("----===## Starting Playback_Starter ##===----")
LOG.info("----===## Starting PlaybackStarter ##===----")
while True:
item = queue.get()
if item is None:
@ -61,4 +61,4 @@ class PlaybackStarter(Thread):
else:
self._triage(item)
queue.task_done()
LOG.info("----===## Playback_Starter stopped ##===----")
LOG.info("----===## PlaybackStarter stopped ##===----")