gcc 2019 q3 fails integration testing #886

unified detailed date format
This commit is contained in:
rusefi 2019-07-14 12:59:46 -04:00
parent b4eb516fd7
commit 002ebef3e7
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public enum FileLog {
} }
public synchronized void logLine(String fullLine) { public synchronized void logLine(String fullLine) {
String withDate = new Date() + END_OF_TIMESTAND_TAG + fullLine; String withDate = getDate() + END_OF_TIMESTAND_TAG + fullLine;
System.out.println(withDate); System.out.println(withDate);
if (suspendLogging) if (suspendLogging)
return; return;