Skip to content

Commit

Permalink
Update custom_components/sector/client.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gjohansson-ST authored Nov 5, 2024
1 parent 235bd20 commit b5a7e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/sector/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ async def get_panel_list(self):
data = []
panellist_url = f"{self.API_URL}/api/account/GetPanelList"
response = await self._get(panellist_url)
_LOGGER.error(f"panel_payload: {response}")
_LOGGER.debug(f"panel_payload: {response}")
if response:
data = [item["PanelId"] for item in response if "PanelId" in item]
else:
Expand Down

0 comments on commit b5a7e04

Please sign in to comment.