Use debug instead of info log level in components [y] (#126233)

This commit is contained in:
Jan-Philipp Benecke 2024-09-18 21:34:31 +02:00 committed by GitHub
parent 8338075d03
commit 31b9c2fb60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,6 +59,6 @@ async def async_migrate_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
hass.config_entries.async_update_entry(entry, version=2)
LOGGER.info("Migration to version %s successful", entry.version)
LOGGER.debug("Migration to version %s successful", entry.version)
return True