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 Franck Nijhof
parent 31348930cc
commit b38a7186d2
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3

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,
)