mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Reduce log noise from Envisalink component (#20282)
This commit is contained in:
parent
f771667c14
commit
08a57959b9
@ -146,19 +146,19 @@ async def async_setup(hass, config):
|
|||||||
@callback
|
@callback
|
||||||
def zones_updated_callback(data):
|
def zones_updated_callback(data):
|
||||||
"""Handle zone timer updates."""
|
"""Handle zone timer updates."""
|
||||||
_LOGGER.info("Envisalink sent a zone update event. Updating zones...")
|
_LOGGER.debug("Envisalink sent a zone update event. Updating zones...")
|
||||||
async_dispatcher_send(hass, SIGNAL_ZONE_UPDATE, data)
|
async_dispatcher_send(hass, SIGNAL_ZONE_UPDATE, data)
|
||||||
|
|
||||||
@callback
|
@callback
|
||||||
def alarm_data_updated_callback(data):
|
def alarm_data_updated_callback(data):
|
||||||
"""Handle non-alarm based info updates."""
|
"""Handle non-alarm based info updates."""
|
||||||
_LOGGER.info("Envisalink sent new alarm info. Updating alarms...")
|
_LOGGER.debug("Envisalink sent new alarm info. Updating alarms...")
|
||||||
async_dispatcher_send(hass, SIGNAL_KEYPAD_UPDATE, data)
|
async_dispatcher_send(hass, SIGNAL_KEYPAD_UPDATE, data)
|
||||||
|
|
||||||
@callback
|
@callback
|
||||||
def partition_updated_callback(data):
|
def partition_updated_callback(data):
|
||||||
"""Handle partition changes thrown by evl (including alarms)."""
|
"""Handle partition changes thrown by evl (including alarms)."""
|
||||||
_LOGGER.info("The envisalink sent a partition update event")
|
_LOGGER.debug("The envisalink sent a partition update event")
|
||||||
async_dispatcher_send(hass, SIGNAL_PARTITION_UPDATE, data)
|
async_dispatcher_send(hass, SIGNAL_PARTITION_UPDATE, data)
|
||||||
|
|
||||||
@callback
|
@callback
|
||||||
|
Loading…
x
Reference in New Issue
Block a user