Fix table formatting

This commit is contained in:
Gabriel Tofvesson 2024-10-14 14:05:23 +02:00
parent f185e40f49
commit 29adfecea6

View File

@ -139,7 +139,9 @@ local function _simpleStringify(inValue, builder, ignoreGlobals, skipFunctions,
local isPlain = plain or LogPlain.is(inValue) local isPlain = plain or LogPlain.is(inValue)
local isDeep = plain or LogPlain.isDeep(inValue) local isDeep = plain or LogPlain.isDeep(inValue)
if type(value) == "table" then if type(value) == "table" then
table.insert(builder, "<") if not isPlain then
table.insert(builder, "<")
end
if ignoreGlobals and G_[value] ~= nil then if ignoreGlobals and G_[value] ~= nil then
table.insert(builder, "_G.") table.insert(builder, "_G.")
table.insert(builder, G_[value]) table.insert(builder, G_[value])