We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc6dd34 commit 1e01f27Copy full SHA for 1e01f27
2 files changed
plugwise_usb/nodes/circle.py
@@ -907,6 +907,7 @@ async def clock_synchronize(self) -> bool:
907
908
async def _send_clock_set_req(self) -> bool:
909
"""Send CircleClockSetRequest."""
910
+ _LOGGER.debug("Circle _send_clock_set_req() called")
911
if self._node_protocols is None:
912
raise NodeError(
913
"Unable to synchronize clock when protocol version is unknown"
plugwise_usb/nodes/circle_plus.py
@@ -116,6 +116,7 @@ async def clock_synchronize(self) -> bool:
116
117
118
"""Send CirclePlusRealTimeClockSetRequest."""
119
+ _LOGGER.debug("C+ _send_clock_set_req() called")
120
set_request = CirclePlusRealTimeClockSetRequest(
121
self._send, self._mac_in_bytes, datetime.now(tz=UTC)
122
)
0 commit comments