diff --git a/custom_components/meross_cloud/__init__.py b/custom_components/meross_cloud/__init__.py index 1fd7b30f39..e1d748c782 100644 --- a/custom_components/meross_cloud/__init__.py +++ b/custom_components/meross_cloud/__init__.py @@ -290,12 +290,12 @@ async def _async_push_notification_received(self, namespace: Namespace, data: di _LOGGER.warning(f"Received unbind event. Removing device %s from HA", self.name) await self.platform.async_remove_entity(self.entity_id) elif namespace == Namespace.SYSTEM_ONLINE: - _LOGGER.warning(f"Device %s reported online event.", self.name) + _LOGGER.info(f"Device %s reported online event.", self.name) online = OnlineStatus(int(data.get('online').get('status'))) update_state = True full_update = online == OnlineStatus.ONLINE elif namespace == Namespace.HUB_ONLINE: - _LOGGER.warning(f"Device {self.name} reported (HUB) online event.") + _LOGGER.info(f"Device {self.name} reported (HUB) online event.") online = OnlineStatus(int(data.get('status'))) update_state = True full_update = online == OnlineStatus.ONLINE