diff --git a/connectlife/api.py b/connectlife/api.py index 324aaf7..d80554a 100644 --- a/connectlife/api.py +++ b/connectlife/api.py @@ -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={