From 3e3cd0981db9c6b9709445a763df63db84bbef73 Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Sun, 25 Apr 2021 11:50:08 +0200 Subject: [PATCH] Reduce hue gamut warning to debug (#49624) --- homeassistant/components/hue/light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/hue/light.py b/homeassistant/components/hue/light.py index 3d193734005..e139f5a0c95 100644 --- a/homeassistant/components/hue/light.py +++ b/homeassistant/components/hue/light.py @@ -299,7 +299,7 @@ class HueLight(CoordinatorEntity, LightEntity): _LOGGER.warning(err, self.name) if self.gamut and not color.check_valid_gamut(self.gamut): err = "Color gamut of %s: %s, not valid, setting gamut to None." - _LOGGER.warning(err, self.name, str(self.gamut)) + _LOGGER.debug(err, self.name, str(self.gamut)) self.gamut_typ = GAMUT_TYPE_UNAVAILABLE self.gamut = None