Change warning to debug for VAD timeout (#132987)

This commit is contained in:
Michael Hansen 2024-12-12 02:03:05 -06:00 committed by GitHub
parent 0d4780e91b
commit 053f03ac58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -140,7 +140,7 @@ class VoiceCommandSegmenter:
self._timeout_seconds_left -= chunk_seconds
if self._timeout_seconds_left <= 0:
_LOGGER.warning(
_LOGGER.debug(
"VAD end of speech detection timed out after %s seconds",
self.timeout_seconds,
)