Use debug instead of info log level in components [j] (#126037)

Use debug/warning instead of info log level in components [j]
This commit is contained in:
Jan-Philipp Benecke 2024-09-16 12:39:02 +02:00 committed by GitHub
parent 136242e38c
commit 6a2d31a481
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -72,7 +72,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
if not juicenet.devices:
_LOGGER.error("No JuiceNet devices found for this account")
return False
_LOGGER.info("%d JuiceNet device(s) found", len(juicenet.devices))
_LOGGER.debug("%d JuiceNet device(s) found", len(juicenet.devices))
async def async_update_data():
"""Update all device states from the JuiceNet API."""