From c03eb4872eaf3683e0ca9d7945778c9003bce150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Matheson=20Wergeland?= Date: Wed, 10 Jul 2024 19:23:43 +0200 Subject: [PATCH] Log properties in update_appliance --- connectlife/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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={