From 7ddb467ba60c4933deb5aab5fde58076c228030a Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 25 Jan 2023 03:38:26 -1000 Subject: [PATCH] Increase async_setup_platforms deprecation logging to warning (#86582) --- homeassistant/config_entries.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index 68e73698b72..e127476073d 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -1327,10 +1327,10 @@ class ConfigEntries: report( ( "called async_setup_platforms instead of awaiting" - " async_forward_entry_setups; this will fail in version 2022.12" + " async_forward_entry_setups; this will fail in version 2023.3" ), # Raise this to warning once all core integrations have been migrated - level=logging.DEBUG, + level=logging.WARNING, error_if_core=False, ) for platform in platforms: