diff --git a/docs/config_entries_config_flow_handler.md b/docs/config_entries_config_flow_handler.md index ac1119b2..8cd09f71 100644 --- a/docs/config_entries_config_flow_handler.md +++ b/docs/config_entries_config_flow_handler.md @@ -231,7 +231,7 @@ async def async_migrate_entry(hass, config_entry: ConfigEntry): config_entry.version = 2 hass.config_entries.async_update_entry(config_entry, data=new) - _LOGGER.info("Migration to version %s successful", config_entry.version) + _LOGGER.debug("Migration to version %s successful", config_entry.version) return True ``` @@ -251,7 +251,7 @@ async def async_migrate_entry(hass, config_entry: ConfigEntry): # saved when async_migrate_entry returns True config_entry.version = 2 - _LOGGER.info("Migration to version %s successful", config_entry.version) + _LOGGER.debug("Migration to version %s successful", config_entry.version) return True ```