From 67a177679e2839aff586a943404446e9eb2078bf Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 6 Mar 2024 13:33:44 -1000 Subject: [PATCH] Log tasks that are being waited on when startup is blocked (#112542) --- homeassistant/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/core.py b/homeassistant/core.py index 1fbdb91cfb6..9a373f7a159 100644 --- a/homeassistant/core.py +++ b/homeassistant/core.py @@ -482,8 +482,10 @@ class HomeAssistant: " phase. We're going to continue anyway. Please report the" " following info at" " https://github.com/home-assistant/core/issues: %s" + " The system is waiting for tasks: %s" ), ", ".join(self.config.components), + self._tasks, ) # Allow automations to set up the start triggers before changing state