Skip to content

Commit af2d642

Browse files
committed
unifi log message between C+ and Circle
1 parent 23c1a44 commit af2d642

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

plugwise_usb/nodes/circle.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,9 +886,10 @@ async def clock_synchronize(self) -> bool:
886886
if abs(clock_offset.total_seconds()) < MAX_TIME_DRIFT:
887887
return True
888888
_LOGGER.info(
889-
"Reset clock of node %s because time has drifted %s sec",
889+
"Reset clock of node %s because time drifted %s seconds (max %s seconds)",
890890
self._mac_in_str,
891891
str(int(abs(clock_offset.total_seconds()))),
892+
str(MAX_TIME_DRIFT),
892893
)
893894
if self._node_protocols is None:
894895
raise NodeError(

0 commit comments

Comments
 (0)