From 4265c3716a911801bdf6bcef542b7dea1ab70429 Mon Sep 17 00:00:00 2001 From: dougiteixeira <31328123+dougiteixeira@users.noreply.github.com> Date: Wed, 27 Nov 2024 01:30:50 -0300 Subject: [PATCH] Fix warnig mode status --- custom_components/proxmoxve/coordinator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/proxmoxve/coordinator.py b/custom_components/proxmoxve/coordinator.py index 405e421..e6192db 100644 --- a/custom_components/proxmoxve/coordinator.py +++ b/custom_components/proxmoxve/coordinator.py @@ -94,7 +94,7 @@ async def _async_update_data(self) -> ProxmoxNodeData: node_status = node_api["status"] break if node_status == "": - LOGGER.warning("Node %s Status is %s", self.resource_id, node_status) + LOGGER.debug("Node %s Status is %s", self.resource_id, node_status) node_status = "offline" if node_status == "online": @@ -523,7 +523,7 @@ async def _async_update_data(self) -> ProxmoxUpdateData: break if node_status == "": node_status = "offline" - LOGGER.warning("Node %s Status is %s", self.node_name, node_status) + LOGGER.debug("Node %s Status is %s", self.node_name, node_status) if node_status == "online": if self.node_name is not None: