From d3d0e05817938d17c9b7a6095d8043c77d26908c Mon Sep 17 00:00:00 2001 From: Shay Levy Date: Wed, 26 Jun 2024 19:19:28 +0300 Subject: [PATCH] Change Shelly connect task log message level to error (#120582) --- homeassistant/components/shelly/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/shelly/coordinator.py b/homeassistant/components/shelly/coordinator.py index a4ff34f7d9a..02feef3633b 100644 --- a/homeassistant/components/shelly/coordinator.py +++ b/homeassistant/components/shelly/coordinator.py @@ -167,7 +167,7 @@ class ShellyCoordinatorBase[_DeviceT: BlockDevice | RpcDevice]( await self.device.initialize() update_device_fw_info(self.hass, self.device, self.entry) except DeviceConnectionError as err: - LOGGER.debug( + LOGGER.error( "Error connecting to Shelly device %s, error: %r", self.name, err ) return False