Skip to content

Commit 1e01f27

Browse files
committed
Debug
1 parent cc6dd34 commit 1e01f27

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

plugwise_usb/nodes/circle.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -907,6 +907,7 @@ async def clock_synchronize(self) -> bool:
907907

908908
async def _send_clock_set_req(self) -> bool:
909909
"""Send CircleClockSetRequest."""
910+
_LOGGER.debug("Circle _send_clock_set_req() called")
910911
if self._node_protocols is None:
911912
raise NodeError(
912913
"Unable to synchronize clock when protocol version is unknown"

plugwise_usb/nodes/circle_plus.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ async def clock_synchronize(self) -> bool:
116116

117117
async def _send_clock_set_req(self) -> bool:
118118
"""Send CirclePlusRealTimeClockSetRequest."""
119+
_LOGGER.debug("C+ _send_clock_set_req() called")
119120
set_request = CirclePlusRealTimeClockSetRequest(
120121
self._send, self._mac_in_bytes, datetime.now(tz=UTC)
121122
)

0 commit comments

Comments
 (0)