Trace itemStack nil countDelta value

This commit is contained in:
Gabriel Tofvesson 2024-11-27 23:39:51 +01:00
parent 3d01e66364
commit 71406dfe11
2 changed files with 11 additions and 5 deletions

View File

@ -217,18 +217,20 @@ local function _simpleStringify(inValue, builder, ignoreGlobals, skipFunctions,
end
end
local function deepStringify(value)
function Logging.deepStringify(value)
local collect = {}
_simpleStringify(cloneNonRecursive(value, {}), collect, false, false)
return table.concat(collect)
end
function Logger:_doPrint(level, message, ...)
local result = { tostring(LogLevel[level]), deepStringify(message) }
if LogLevel.isGreaterOrEqual(level, self.level) then
local result = { tostring(LogLevel[level]), Logging.deepStringify(message) }
for _,v in ipairs({...}) do
table.insert(result, deepStringify(v))
table.insert(result, Logging.deepStringify(v))
end
self.output(table.concat(result, " "))
end
self.output(table.concat(result, " "), level)
end
function Logger:trace(message, ...)

View File

@ -1,5 +1,6 @@
local Inventory = require("storage.inventory")
local Sentinel = require("storage.sentinel")
local Logger = require("logging").getGlobalLogger()
local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK)
ItemStack.__index = ItemStack
@ -156,6 +157,9 @@ function ItemStack:hasChanged(listObj, thorough)
end
function ItemStack:_modify(countDelta, stack)
if countDelta == nil then
Logger:error("countDelta is nil!", stack)
end
local newCount = self:getCount() + countDelta
if newCount < 0 then
error("ERROR: New stack count is negative: "..newCount)