Fix odd persistent global state bug

This commit is contained in:
Gabriel Tofvesson 2024-10-14 14:03:51 +02:00
parent 6bb6c0e822
commit f185e40f49
2 changed files with 10 additions and 9 deletions

View File

@ -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")

View File

@ -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, "<recurse_")
table.insert(builder, "recurse_")
table.insert(builder, tostring(value.index))
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