From 29adfecea6587be34399168cd32c80b9b0e559d3 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Mon, 14 Oct 2024 14:05:23 +0200 Subject: [PATCH] Fix table formatting --- logging.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/logging.lua b/logging.lua index acd201d..865297a 100644 --- a/logging.lua +++ b/logging.lua @@ -139,7 +139,9 @@ local function _simpleStringify(inValue, builder, ignoreGlobals, skipFunctions, local isPlain = plain or LogPlain.is(inValue) local isDeep = plain or LogPlain.isDeep(inValue) if type(value) == "table" then - table.insert(builder, "<") + if not isPlain then + table.insert(builder, "<") + end if ignoreGlobals and G_[value] ~= nil then table.insert(builder, "_G.") table.insert(builder, G_[value])