From 806903ffe06bd5e227fd8515f82bb82d1170fce5 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 22 May 2019 05:59:16 -0700 Subject: [PATCH] Downgrade Hue warning (#24033) --- homeassistant/components/hue/bridge.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeassistant/components/hue/bridge.py b/homeassistant/components/hue/bridge.py index 25db031e6bf..0610278de7b 100644 --- a/homeassistant/components/hue/bridge.py +++ b/homeassistant/components/hue/bridge.py @@ -60,6 +60,7 @@ class HueBridge: return False except CannotConnect: + LOGGER.error("Error connecting to the Hue bridge at %s", host) raise ConfigEntryNotReady except Exception: # pylint: disable=broad-except @@ -161,10 +162,8 @@ async def get_bridge(hass, host, username=None): return bridge except (aiohue.LinkButtonNotPressed, aiohue.Unauthorized): - LOGGER.warning("Connected to Hue at %s but not registered.", host) raise AuthenticationRequired except (asyncio.TimeoutError, aiohue.RequestError): - LOGGER.error("Error connecting to the Hue bridge at %s", host) raise CannotConnect except aiohue.AiohueException: LOGGER.exception('Unknown Hue linking error occurred')