Update logfile output spacing (#944)

* Update logfile output spacing
This commit is contained in:
abraunegg 2020-06-05 06:00:42 +10:00 committed by GitHub
parent 8376a360cc
commit b7f69e2541
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -173,7 +173,7 @@ private void logfileWriteLine(T...)(T args)
logFile = File(logFileNameAlternate, "a");
}
// Write to the log file
logFile.writeln(timeString, " ", args);
logFile.writeln(timeString, "\t", args);
logFile.close();
}