From 3b8d6eb851f43eef8ede6ab0994e2dfc7e2e4c9a Mon Sep 17 00:00:00 2001 From: Andre Lengwenus Date: Tue, 24 Jun 2025 15:24:25 +0200 Subject: [PATCH] Log LCN connection established with log level info (#147424) --- homeassistant/components/lcn/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/lcn/__init__.py b/homeassistant/components/lcn/__init__.py index efc981b754c..43438fa64dd 100644 --- a/homeassistant/components/lcn/__init__.py +++ b/homeassistant/components/lcn/__init__.py @@ -107,7 +107,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: LcnConfigEntry) - f"Unable to connect to {config_entry.title}: {ex}" ) from ex - _LOGGER.debug('LCN connected to "%s"', config_entry.title) + _LOGGER.info('LCN connected to "%s"', config_entry.title) config_entry.runtime_data = LcnRuntimeData( connection=lcn_connection, device_connections={},