Skip to content

Commit

Permalink
chore: increase legacy node enum error level
Browse files Browse the repository at this point in the history
  • Loading branch information
andersevenrud committed Apr 2, 2024
1 parent e21ef87 commit 2dce6c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/nexa_bridge_x/nexa.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ async def fetch_nodes(self, skip_enum: bool) -> list[NexaNodeData]:
data = await self.fetch_node(r["id"])
new_result.append(data)
except:
_LOGGER.warning("Failed to enum node data: %s", r["id"])
_LOGGER.error("Failed to enum node data: %s", r["id"])

return new_result

Expand Down

0 comments on commit 2dce6c7

Please sign in to comment.