From 4343e84ecfd4e1531548a5cdfd8cb46cb2136b0c 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 6e1d140b20e..2493fa54c76 100644 --- a/homeassistant/bootstrap.py +++ b/homeassistant/bootstrap.py @@ -378,7 +378,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), )