Don't warn about unknown pipeline events in ESPHome (#102174)

Don't warn about unknown events (debug)
pull/102180/head
Michael Hansen 2023-10-17 10:57:08 -05:00 committed by GitHub
parent af66bc5e3a
commit 474f4329bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class VoiceAssistantUDPServer(asyncio.DatagramProtocol):
try:
event_type = _VOICE_ASSISTANT_EVENT_TYPES.from_hass(event.type)
except KeyError:
_LOGGER.warning("Received unknown pipeline event type: %s", event.type)
_LOGGER.debug("Received unknown pipeline event type: %s", event.type)
return
data_to_send = None