From 9fe0a6a19fc4e994a35831f590c63e5c9de86746 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Fri, 13 Sep 2024 16:46:52 -0700 Subject: [PATCH] More logging --- neon_audio/service.py | 1 - neon_audio/tts/neon.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/neon_audio/service.py b/neon_audio/service.py index bb9cf8e..8947a40 100644 --- a/neon_audio/service.py +++ b/neon_audio/service.py @@ -32,7 +32,6 @@ from threading import Event -from ovos_bus_client import Message from ovos_utils.log import LOG, log_deprecation from neon_audio.tts import TTSFactory from neon_utils.messagebus_utils import get_messagebus diff --git a/neon_audio/tts/neon.py b/neon_audio/tts/neon.py index dce0170..ed61686 100644 --- a/neon_audio/tts/neon.py +++ b/neon_audio/tts/neon.py @@ -204,6 +204,7 @@ def resume(self): class WrappedTTS(TTS): def __new__(cls, base_engine, *args, **kwargs): + LOG.info(f"Creating wrapped TTS object for {base_engine}") base_engine.execute = cls.execute base_engine.get_multiple_tts = cls.get_multiple_tts # TODO: Below method is only to bridge compatibility