From d79067db7eb0d0bcf26b0808e183b17304de8ed8 Mon Sep 17 00:00:00 2001 From: RogerSelwyn <RogerSelwyn@users.noreply.github.com> Date: Sun, 5 Jul 2020 19:11:07 +0100 Subject: [PATCH] Standardise geniusheub error levels (#37512) --- homeassistant/components/geniushub/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/geniushub/__init__.py b/homeassistant/components/geniushub/__init__.py index 16967fb265a..0e779ebdcba 100644 --- a/homeassistant/components/geniushub/__init__.py +++ b/homeassistant/components/geniushub/__init__.py @@ -181,14 +181,14 @@ class GeniusBroker: await self.client.update() if self._connect_error: self._connect_error = False - _LOGGER.warning("Connection to geniushub re-established") + _LOGGER.info("Connection to geniushub re-established") except ( aiohttp.ClientResponseError, aiohttp.client_exceptions.ClientConnectorError, ) as err: if not self._connect_error: self._connect_error = True - _LOGGER.warning( + _LOGGER.error( "Connection to geniushub failed (unable to update), message is: %s", err, ) -- GitLab