From 4de9f5194f79e011297f6df8cd3735787f19e799 Mon Sep 17 00:00:00 2001 From: Philip Allgaier Date: Sun, 10 Jan 2021 21:37:55 +0100 Subject: [PATCH] Include current version in updater log output (#45022) --- homeassistant/components/updater/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/updater/__init__.py b/homeassistant/components/updater/__init__.py index 3d7b8b626c9..13497da8290 100644 --- a/homeassistant/components/updater/__init__.py +++ b/homeassistant/components/updater/__init__.py @@ -93,7 +93,11 @@ async def async_setup(hass, config): "You are on the latest version (%s) of Home Assistant", newest ) elif StrictVersion(newest) < StrictVersion(current_version): - _LOGGER.debug("Local version is newer than the latest version (%s)", newest) + _LOGGER.debug( + "Local version (%s) is newer than the latest available version (%s)", + current_version, + newest, + ) _LOGGER.debug("Update available: %s", update_available)