From 9be06d8be4999d7d504282d8c39a797315bf3204 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 8 Jul 2020 08:57:07 -0500 Subject: [PATCH] Increase slow setup logging to warning level (#37635) When I fixed verbose logging in #36444, I did not realize this would mean almost nobody would see this now. --- homeassistant/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/bootstrap.py b/homeassistant/bootstrap.py index 94ec33f4e1a..952991228c9 100644 --- a/homeassistant/bootstrap.py +++ b/homeassistant/bootstrap.py @@ -351,7 +351,7 @@ async def _async_log_pending_setups( remaining = [domain for domain in domains if domain in setup_started] if remaining: - _LOGGER.info( + _LOGGER.warning( "Waiting on integrations to complete setup: %s", ", ".join(remaining), )