Fix bug from merge conflict

This commit is contained in:
Gabriel Tofvesson 2024-11-27 23:47:07 +01:00
parent 8533d837cd
commit e62ab1d4f8

View File

@ -224,13 +224,11 @@ function Logging.deepStringify(value)
end
function Logger:_doPrint(level, message, ...)
if LogLevel.isGreaterOrEqual(level, self.level) then
local result = { tostring(LogLevel[level]), Logging.deepStringify(message) }
for _,v in ipairs({...}) do
table.insert(result, Logging.deepStringify(v))
end
self.output(table.concat(result, " "))
local result = { tostring(LogLevel[level]), Logging.deepStringify(message) }
for _,v in ipairs({...}) do
table.insert(result, Logging.deepStringify(v))
end
self.output(table.concat(result, " "), level)
end
function Logger:trace(message, ...)