From e63d0c51e074c33af6d5473ae542bb013011effa Mon Sep 17 00:00:00 2001 From: badele Date: Sun, 8 Nov 2015 19:02:51 +0100 Subject: [PATCH] Change log severity --- homeassistant/components/light/rfxtrx.py | 2 +- homeassistant/components/sensor/rfxtrx.py | 2 +- homeassistant/components/switch/rfxtrx.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/light/rfxtrx.py b/homeassistant/components/light/rfxtrx.py index 9cbce4f860f..d9b32bd2faf 100644 --- a/homeassistant/components/light/rfxtrx.py +++ b/homeassistant/components/light/rfxtrx.py @@ -59,7 +59,7 @@ def setup_platform(hass, config, add_devices_callback, discovery_info=None): # Check if entity exists or previously added automatically if entity_id in rfxtrx.RFX_DEVICES: - _LOGGER.info( + _LOGGER.debug( "EntityID: %s light_update. Command: %s", entity_id, event.values['Command'] diff --git a/homeassistant/components/sensor/rfxtrx.py b/homeassistant/components/sensor/rfxtrx.py index 79e07fa1517..b33206faa29 100644 --- a/homeassistant/components/sensor/rfxtrx.py +++ b/homeassistant/components/sensor/rfxtrx.py @@ -43,7 +43,7 @@ def setup_platform(hass, config, add_devices_callback, discovery_info=None): rfxtrx.RFX_DEVICES[entity_id] = new_sensor add_devices_callback([new_sensor]) else: - _LOGGER.info( + _LOGGER.debug( "EntityID: %s sensor_update", entity_id, ) diff --git a/homeassistant/components/switch/rfxtrx.py b/homeassistant/components/switch/rfxtrx.py index 982d42b7901..5654725e6b0 100644 --- a/homeassistant/components/switch/rfxtrx.py +++ b/homeassistant/components/switch/rfxtrx.py @@ -61,7 +61,7 @@ def setup_platform(hass, config, add_devices_callback, discovery_info=None): # Check if entity exists or previously added automatically if entity_id in rfxtrx.RFX_DEVICES: - _LOGGER.info( + _LOGGER.debug( "EntityID: %s switch_update. Command: %s", entity_id, event.values['Command']