Skip to content

Commit

Permalink
Updated logging in PlaybackThread queue handling (#39)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel McKnight <[email protected]>
  • Loading branch information
NeonDaniel and NeonDaniel authored Oct 27, 2023
1 parent e8b3743 commit c4bbcf7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ovos_audio/playback.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,10 @@ def run(self, cb=None):

self._now_playing = (data, visemes, listen, tts_id, message)
self._play()
except Empty:
pass
except Exception as e:
LOG.debug(e)
LOG.error(e)

def show_visemes(self, pairs):
"""Send viseme data to enclosure
Expand Down

0 comments on commit c4bbcf7

Please sign in to comment.