Print newlines to log file

This commit is contained in:
Gabriel Tofvesson 2024-10-14 06:00:26 +02:00
parent 3c339a372a
commit 3496346583

View File

@ -20,6 +20,7 @@ local Logger = Logging.getGlobalLogger()
Logger:setOutput(function(text)
LOG_FILE.write(text)
LOG_FILE.write("\n")
LOG_FILE.flush()
print(text)
end)