diff --git a/hass_nabucasa/remote.py b/hass_nabucasa/remote.py index dda6f2ebc..25566ff9e 100644 --- a/hass_nabucasa/remote.py +++ b/hass_nabucasa/remote.py @@ -415,11 +415,9 @@ async def connect(self) -> None: except asyncio.TimeoutError: _LOGGER.error("Timeout connecting to snitun server") except SniTunConnectionError as err: - can_reconnect = self._snitun and not self._reconnect_task _LOGGER.log( - logging.INFO if can_reconnect else logging.ERROR, - "Connection problem to snitun server%s (%s)", - ", reconnecting" if can_reconnect else "", + logging.ERROR if self._reconnect_task is not None else logging.INFO, + "Connection problem to snitun server (%s)", err, ) except RemoteBackendError: