diff --git a/pyproject.toml b/pyproject.toml index c8bfe66..a9910ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ packages = ["src/abbfreeathome"] [project] name = "local-abbfreeathome" -version = "1.16.1" +version = "1.16.2" authors = [ { name="Adam Kingsley", email="adam@kingsley.io" }, ] diff --git a/src/abbfreeathome/api.py b/src/abbfreeathome/api.py index 1102f35..369cd5c 100644 --- a/src/abbfreeathome/api.py +++ b/src/abbfreeathome/api.py @@ -318,6 +318,8 @@ async def ws_receive( data = await self._ws_response.receive() if data.type == WSMsgType.TEXT: _ws_data = data.json().get(self._sysap_uuid) + + _LOGGER.debug("Websocket Response: %s", _ws_data) if callback and inspect.iscoroutinefunction(callback): await callback(_ws_data) elif callback: