Skip to content

Commit

Permalink
Fix warnig mode status
Browse files Browse the repository at this point in the history
  • Loading branch information
dougiteixeira authored Nov 27, 2024
1 parent f542249 commit 4265c37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/proxmoxve/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 4265c37

Please sign in to comment.