From 89df82111314a666811dd24fda704fefc7e27d45 Mon Sep 17 00:00:00 2001 From: Santobert Date: Thu, 31 Oct 2019 09:41:44 +0100 Subject: [PATCH] Flux log with debug instead of info (#28352) --- homeassistant/components/flux/switch.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/flux/switch.py b/homeassistant/components/flux/switch.py index 7b58ffbe449..404067d4107 100644 --- a/homeassistant/components/flux/switch.py +++ b/homeassistant/components/flux/switch.py @@ -310,7 +310,7 @@ class FluxSwitch(SwitchDevice, RestoreEntity): await async_set_lights_xy( self.hass, self._lights, x_val, y_val, brightness, self._transition ) - _LOGGER.info( + _LOGGER.debug( "Lights updated to x:%s y:%s brightness:%s, %s%% " "of %s cycle complete at %s", x_val, @@ -322,7 +322,7 @@ class FluxSwitch(SwitchDevice, RestoreEntity): ) elif self._mode == MODE_RGB: await async_set_lights_rgb(self.hass, self._lights, rgb, self._transition) - _LOGGER.info( + _LOGGER.debug( "Lights updated to rgb:%s, %s%% " "of %s cycle complete at %s", rgb, round(percentage_complete * 100), @@ -335,7 +335,7 @@ class FluxSwitch(SwitchDevice, RestoreEntity): await async_set_lights_temp( self.hass, self._lights, mired, brightness, self._transition ) - _LOGGER.info( + _LOGGER.debug( "Lights updated to mired:%s brightness:%s, %s%% " "of %s cycle complete at %s", mired,