From 00e1a6ce0b87e7982a76c71c469907281f3739ab Mon Sep 17 00:00:00 2001 From: Sven Van Caekenberghe Date: Sun, 30 May 2021 11:22:31 +0200 Subject: [PATCH] Change #crLog: to #crTrace: in ZTimestampSNTPClient class>>#logClockDifferenceLargerThan: --- repository/ZTimestamp-Core/ZTimestampSNTPClient.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/ZTimestamp-Core/ZTimestampSNTPClient.class.st b/repository/ZTimestamp-Core/ZTimestampSNTPClient.class.st index f0a810d..fc7a7d0 100644 --- a/repository/ZTimestamp-Core/ZTimestampSNTPClient.class.st +++ b/repository/ZTimestamp-Core/ZTimestampSNTPClient.class.st @@ -38,7 +38,7 @@ ZTimestampSNTPClient class >> logClockDifferenceLargerThan: duration [ self new enforceClockDifference: duration ifFail: [ :delta | - self crLog: ('Warning: clock difference {1} > {2}' format: { delta. duration }) ]; + self crTrace: ('Warning: clock difference {1} > {2}' format: { delta. duration }) ]; close ]