Reduce hue gamut warning to debug (#49624)

pull/49655/head
starkillerOG 2021-04-25 11:50:08 +02:00 committed by GitHub
parent e2837f08e8
commit 3e3cd0981d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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