Skip to content

Commit

Permalink
Add log to troubleshoot service startup
Browse files Browse the repository at this point in the history
Update playback thread init
  • Loading branch information
NeonDaniel committed Sep 14, 2024
1 parent 12b4a3b commit ef778e4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions neon_audio/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def main(*args, **kwargs):
setup_locale()
try:
service = NeonPlaybackService(*args, **kwargs)
LOG.info("Service init completed")
service.start()
wait_for_exit_signal()
except Exception as e:
Expand Down
1 change: 0 additions & 1 deletion neon_audio/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ def __init__(self, ready_hook=on_ready, error_hook=on_error,
PlaybackService.__init__(self, ready_hook, error_hook, stopping_hook,
alive_hook, started_hook, watchdog, bus,
disable_ocp, validate_source=False)
self.playback_thread.join()
del self.playback_thread
from neon_audio.tts.neon import NeonPlaybackThread
from ovos_plugin_manager.tts import TTS
Expand Down

0 comments on commit ef778e4

Please sign in to comment.