Skip to content

Commit 699c60f

Browse files
authored
Add the current version to the starting log to aid troubleshooting (home-assistant#148271)
1 parent 404d17e commit 699c60f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homeassistant/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ async def async_start(self) -> None:
532532
533533
This method is a coroutine.
534534
"""
535-
_LOGGER.info("Starting Home Assistant")
535+
_LOGGER.info("Starting Home Assistant %s", __version__)
536536

537537
self.set_state(CoreState.starting)
538538
self.bus.async_fire_internal(EVENT_CORE_CONFIG_UPDATE)

0 commit comments

Comments
 (0)