From d463ad6e4190751469d0a62852bccb6990e78f42 Mon Sep 17 00:00:00 2001 From: Nerdix <70015952+N3rdix@users.noreply.github.com> Date: Thu, 21 Dec 2023 13:43:25 +0100 Subject: [PATCH] Update coordinator.py --- homeassistant/components/version/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/version/coordinator.py b/homeassistant/components/version/coordinator.py index 2f54e818b9347b..1b32e71f0ffbf8 100644 --- a/homeassistant/components/version/coordinator.py +++ b/homeassistant/components/version/coordinator.py @@ -52,7 +52,7 @@ async def _async_update_data(self) -> None: try: self._version, self._version_data = await self._api.get_version() except HaVersionTimeoutException as exception: - logger.warning("Updating version timed out: %s", exception) + _LOGGER.warning("Updating version timed out: %s", exception) return except HaVersionException as exception: raise UpdateFailed(exception) from exception