summaryrefslogtreecommitdiff
path: root/sources/protocols/implementations/VSExternalTimeSyncProtocol.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-04-15 02:53:19 +0300
committerPaul Buetow <paul@buetow.org>2025-04-15 02:53:19 +0300
commit822c7de49419775fe20c982a302b95987bbac2cf (patch)
tree25f84e977d206fe2d3fddae4238f56b49999ddc1 /sources/protocols/implementations/VSExternalTimeSyncProtocol.java
parent53b373ad26ff3f3c1900b9baa0d5366113884ef6 (diff)
more translation into english
Diffstat (limited to 'sources/protocols/implementations/VSExternalTimeSyncProtocol.java')
-rw-r--r--sources/protocols/implementations/VSExternalTimeSyncProtocol.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/sources/protocols/implementations/VSExternalTimeSyncProtocol.java b/sources/protocols/implementations/VSExternalTimeSyncProtocol.java
index 24128f6..f044861 100644
--- a/sources/protocols/implementations/VSExternalTimeSyncProtocol.java
+++ b/sources/protocols/implementations/VSExternalTimeSyncProtocol.java
@@ -66,9 +66,8 @@ public class VSExternalTimeSyncProtocol extends VSAbstractProtocol {
long serverTime = recvMessage.getLong("time");
long newTime = serverTime + (long) (roundTripTime / 2);
- log("Server Zeit: " + serverTime + "; RTT: " + roundTripTime +
- "; Alte Zeit: " + recvTime + "; Neue Zeit: " + newTime +
- "; Offset: " + (newTime - recvTime));
+ log("Server time: " + serverTime + "; RTT: " + roundTripTime + "; Old time: " + recvTime + "; New time: " + newTime + "; Offset: " + (newTime - recvTime));
+
process.setTime(newTime);
}