Use debug/warning instead of info log level in components [h] (#126033)

This commit is contained in:
Jan-Philipp Benecke 2024-09-16 11:44:14 +02:00 committed by GitHub
parent 53c23dfb6f
commit b32f40c0fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 27 additions and 30 deletions

View file

@ -27,7 +27,7 @@ def setup_platform(
) -> None:
"""Find and return HDMI devices as switches."""
if discovery_info and ATTR_NEW in discovery_info:
_LOGGER.info("Setting up HDMI devices %s", discovery_info[ATTR_NEW])
_LOGGER.debug("Setting up HDMI devices %s", discovery_info[ATTR_NEW])
entities = []
for device in discovery_info[ATTR_NEW]:
hdmi_device = hass.data[DOMAIN][device]