Fix stringify spacing

This commit is contained in:
Gabriel Tofvesson 2024-10-14 06:05:05 +02:00
parent 3496346583
commit 6f7775f602

View File

@ -151,7 +151,9 @@ function Logger:_doPrint(level, message, ...)
if LogLevel.isGreaterOrEqual(level, self.level) then
local result = { tostring(LogLevel[level]), message }
for _,v in ipairs({...}) do
_simpleStringify(cloneNonRecursive(v, {}), result)
local collect = {}
_simpleStringify(cloneNonRecursive(v, {}), collect)
table.insert(result, table.concat(collect))
end
self.output(table.concat(result, " "))
end