We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c1a44 commit af2d642Copy full SHA for af2d642
plugwise_usb/nodes/circle.py
@@ -886,9 +886,10 @@ async def clock_synchronize(self) -> bool:
886
if abs(clock_offset.total_seconds()) < MAX_TIME_DRIFT:
887
return True
888
_LOGGER.info(
889
- "Reset clock of node %s because time has drifted %s sec",
+ "Reset clock of node %s because time drifted %s seconds (max %s seconds)",
890
self._mac_in_str,
891
str(int(abs(clock_offset.total_seconds()))),
892
+ str(MAX_TIME_DRIFT),
893
)
894
if self._node_protocols is None:
895
raise NodeError(
0 commit comments