diff --git a/logging.lua b/logging.lua index 40cf62b..68fb3a2 100644 --- a/logging.lua +++ b/logging.lua @@ -178,7 +178,12 @@ local function _simpleStringify(inValue, builder, ignoreGlobals, skipFunctions, _simpleStringify(v, builder, ignoreGlobals, skipFunctions, isDeep) end first = #value == 0 + local len = #value for k,v in pairs(value) do + -- Array elements already printed + if type(k) == "number" and k <= len then + goto continue + end if not first then table.insert(builder, ",") else @@ -188,6 +193,7 @@ local function _simpleStringify(inValue, builder, ignoreGlobals, skipFunctions, _simpleStringify(k, builder, ignoreGlobals, skipFunctions, isDeep or type(k) == "string") table.insert(builder, "=") _simpleStringify(v, builder, ignoreGlobals, skipFunctions, isDeep) + ::continue:: end table.insert(builder, "}") end