From ed1eb8ac9cfc6fab19058cf101f477c1ad4052d9 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 82d358b33d8..fd5cfaa1542 100644 --- a/homeassistant/components/shelly/coordinator.py +++ b/homeassistant/components/shelly/coordinator.py @@ -168,7 +168,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