mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Don't warn about unknown pipeline events in ESPHome (#102174)
Don't warn about unknown events (debug)
This commit is contained in:
parent
af66bc5e3a
commit
474f4329bc
@ -163,7 +163,7 @@ class VoiceAssistantUDPServer(asyncio.DatagramProtocol):
|
|||||||
try:
|
try:
|
||||||
event_type = _VOICE_ASSISTANT_EVENT_TYPES.from_hass(event.type)
|
event_type = _VOICE_ASSISTANT_EVENT_TYPES.from_hass(event.type)
|
||||||
except KeyError:
|
except KeyError:
|
||||||
_LOGGER.warning("Received unknown pipeline event type: %s", event.type)
|
_LOGGER.debug("Received unknown pipeline event type: %s", event.type)
|
||||||
return
|
return
|
||||||
|
|
||||||
data_to_send = None
|
data_to_send = None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user