mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 17:27:10 +00:00
Include current version in updater log output (#45022)
This commit is contained in:
parent
f5b389faa8
commit
4de9f5194f
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user