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')