Skip to content

Commit

Permalink
Log properties in update_appliance
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindwe committed Jul 10, 2024
1 parent a0c513c commit 85f7156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connectlife/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async def update_appliance(self, puid: str, properties: dict[str, str]):
"puid": puid,
"properties": properties
}
_LOGGER.debug("Updating appliance with puid %s", puid)
_LOGGER.debug("Updating appliance with puid %s to %s", puid, json.dumps(properties))
await self._fetch_access_token()
async with aiohttp.ClientSession() as session:
async with session.post(APPLIANCES_URL, json=data, headers={
Expand Down

0 comments on commit 85f7156

Please sign in to comment.