Skip to content

Commit 1d1da19

Browse files
committed
add more debugging
1 parent 6f1dbfa commit 1d1da19

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

openevsehttp/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,11 @@ def _update_status(self, msgtype, data, error):
250250
self._ws_listening = False
251251

252252
elif msgtype == "data":
253+
_LOGGER.debug("ws_data: %s", data)
253254
update_data = data
254255

255-
for key, value in update_data:
256-
self._status[key] = value
256+
# for key, value in update_data:
257+
# self._status[key] = value
257258

258259
def ws_disconnect(self) -> None:
259260
"""Disconnect the websocket listener."""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
PROJECT_DIR = Path(__file__).parent.resolve()
77
README_FILE = PROJECT_DIR / "README.md"
8-
VERSION = "0.1.8-6"
8+
VERSION = "0.1.8-7"
99

1010

1111
setup(

0 commit comments

Comments
 (0)