From aadfcc9a6e711f14f3285d6b4763a8d43bc60140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Thu, 5 May 2022 20:57:01 +0200 Subject: [PATCH] Lower Airzone unique id migration log to debug (#71362) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Address late @MartinHjelmare PR comments. Signed-off-by: Álvaro Fernández Rojas --- homeassistant/components/airzone/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/airzone/__init__.py b/homeassistant/components/airzone/__init__.py index 39f1fc978c3..2882ea18143 100644 --- a/homeassistant/components/airzone/__init__.py +++ b/homeassistant/components/airzone/__init__.py @@ -99,7 +99,7 @@ async def _async_migrate_unique_ids( if entity_unique_id.startswith(entry_id): new_unique_id = f"{unique_id}{entity_unique_id[len(entry_id):]}" - _LOGGER.info( + _LOGGER.debug( "Migrating unique_id from [%s] to [%s]", entity_unique_id, new_unique_id,