Fix logging string
This commit is contained in:
parent
5f26692e0f
commit
b4b05b70ec
1 changed files with 2 additions and 2 deletions
|
@ -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 ##===----")
|
||||
|
|
Loading…
Reference in a new issue