From 699c60f2937168f857e80469ad9dd7a7d2ae9e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Sun, 6 Jul 2025 18:06:27 +0100 Subject: [PATCH] Add the current version to the starting log to aid troubleshooting (#148271) --- homeassistant/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/core.py b/homeassistant/core.py index c5d4ca79371..469acd5dae8 100644 --- a/homeassistant/core.py +++ b/homeassistant/core.py @@ -532,7 +532,7 @@ class HomeAssistant: This method is a coroutine. """ - _LOGGER.info("Starting Home Assistant") + _LOGGER.info("Starting Home Assistant %s", __version__) self.set_state(CoreState.starting) self.bus.async_fire_internal(EVENT_CORE_CONFIG_UPDATE)