Empty sentinel list for root cloneNonRecursive

This commit is contained in:
Gabriel Tofvesson 2024-10-14 05:59:29 +02:00
parent ba057b20c6
commit 3c339a372a

View File

@ -151,7 +151,7 @@ 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)
_simpleStringify(cloneNonRecursive(v, {}), result)
end
self.output(table.concat(result, " "))
end