From 7bc9f90565672d76b10bf332f4d9ba11f3680703 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 26 Oct 2023 11:49:46 -0700 Subject: [PATCH] Add debug logging --- neon_speech/service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/neon_speech/service.py b/neon_speech/service.py index 7229009..832b6e0 100644 --- a/neon_speech/service.py +++ b/neon_speech/service.py @@ -138,6 +138,7 @@ def _validate_message_context(self, message: Message, native_sources=None): log_deprecation(f"Adding audio to destination context for " f"{message.msg_type}", "5.0.0") message.context['destination'].append('audio') + LOG.debug(f"Checking sources {native_sources} for {message.context}") return OVOSDinkumVoiceService._validate_message_context(self, message, native_sources)