writeLine has newline of course..

This commit is contained in:
Mikayla Fischler 2022-04-05 16:08:55 -04:00
parent dbf7377c02
commit 5b32f83890

View File

@ -30,16 +30,16 @@ function _debug(msg, trace)
debug.getinfo(2).currentline .. " > " debug.getinfo(2).currentline .. " > "
end end
_log("[DBG] " .. dbg_info .. msg .. "\n") _log("[DBG] " .. dbg_info .. msg)
end end
end end
function _info(msg) function _info(msg)
_log("[INF] " .. msg .. "\n") _log("[INF] " .. msg)
end end
function _warning(msg) function _warning(msg)
_log("[WRN] " .. msg .. "\n") _log("[WRN] " .. msg)
end end
function _error(msg, trace) function _error(msg, trace)
@ -56,9 +56,9 @@ function _error(msg, trace)
debug.getinfo(2).currentline .. " > " debug.getinfo(2).currentline .. " > "
end end
_log("[ERR] " .. dbg_info .. msg .. "\n") _log("[ERR] " .. dbg_info .. msg)
end end
function _fatal(msg) function _fatal(msg)
_log("[FTL] " .. msg .. "\n") _log("[FTL] " .. msg)
end end