From a350b7d818a4625090954efb9312fa0fbcc5c13c Mon Sep 17 00:00:00 2001 From: G Johansson Date: Thu, 7 Sep 2023 20:20:59 +0200 Subject: [PATCH] change logger to debug for config entry migration (#1901) --- docs/config_entries_config_flow_handler.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ```