From 6a926b41f27869d7679058e2552d2462247cf15f Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Wed, 1 Dec 2021 19:35:39 +0100 Subject: [PATCH] Enable warnings for SsdpServiceInfo (#60756) Co-authored-by: epenet --- homeassistant/components/ssdp/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/homeassistant/components/ssdp/__init__.py b/homeassistant/components/ssdp/__init__.py index c5ff03264a0..57948000701 100644 --- a/homeassistant/components/ssdp/__init__.py +++ b/homeassistant/components/ssdp/__init__.py @@ -117,7 +117,6 @@ class SsdpServiceInfo( f"accessed discovery_info['{name}'] instead of discovery_info.{name}; this will fail in version 2022.6", exclude_integrations={DOMAIN}, error_if_core=False, - level=logging.DEBUG, ) self._warning_logged = True # Use a property if it is available, fallback to upnp data @@ -138,7 +137,6 @@ class SsdpServiceInfo( f"accessed discovery_info.get('{name}') instead of discovery_info.{name}; this will fail in version 2022.6", exclude_integrations={DOMAIN}, error_if_core=False, - level=logging.DEBUG, ) self._warning_logged = True if hasattr(self, name): @@ -157,7 +155,6 @@ class SsdpServiceInfo( "or discovery_info.ssdp_headers.__contains__(); this will fail in version 2022.6", exclude_integrations={DOMAIN}, error_if_core=False, - level=logging.DEBUG, ) self._warning_logged = True if hasattr(self, name):