diff --git a/itemcontroller.lua b/itemcontroller.lua index d3a10cc..ca450e5 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -1,7 +1,9 @@ +local Logging = require("logging") +Logging.resetAll() + local Chest = require("storage.chest") local ItemGroup = require("storage.itemgroup") local Storage = require("storage") -local Logging = require("logging") local Text = require("gfx.text") local List = require("gfx.list") local Event = require("gfx.event") diff --git a/logging.lua b/logging.lua index d685582..acd201d 100644 --- a/logging.lua +++ b/logging.lua @@ -139,21 +139,19 @@ 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 - if not isPlain then - table.insert(builder, "<") - end + table.insert(builder, "<") if ignoreGlobals and G_[value] ~= nil then table.insert(builder, "_G.") table.insert(builder, G_[value]) elseif RecursionSentinel.isSentinel(value) then if isPlain then - table.insert(builder, "") else table.insert(builder, "recurse ") table.insert(builder, tostring(value.value)) end + table.insert(builder, ">") else if not isPlain then table.insert(builder, tostring(value)) @@ -183,9 +181,6 @@ local function _simpleStringify(inValue, builder, ignoreGlobals, skipFunctions, end table.insert(builder, "}") end - if not isPlain then - table.insert(builder, ">") - end elseif type(value) == "string" then if not isPlain then table.insert(builder, "\"") @@ -276,4 +271,8 @@ function Logging.getGlobalLogger() return _G._GLOBAL_LOGGER end +function Logging.resetAll() + _G._GLOBAL_LOGGER = nil +end + return Logging \ No newline at end of file