Closed ethangreen-dev closed 2 months ago
This fixes an annoying problem where log messages from Lua print() functions would be output to the console and log file in reverse order. For example print("1", nil) would be printed to the console/logfile as nil 1.
print()
print("1", nil)
nil 1
This fixes an annoying problem where log messages from Lua
print()
functions would be output to the console and log file in reverse order. For exampleprint("1", nil)
would be printed to the console/logfile asnil 1
.