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
end end
local function deepStringify(value) function Logging.deepStringify(value)
local collect = {} local collect = {}
_simpleStringify(cloneNonRecursive(value, {}), collect, false, false) _simpleStringify(cloneNonRecursive(value, {}), collect, false, false)
return table.concat(collect) return table.concat(collect)
end end
function Logger:_doPrint(level, message, ...) function Logger:_doPrint(level, message, ...)
local result = { tostring(LogLevel[level]), deepStringify(message) } if LogLevel.isGreaterOrEqual(level, self.level) then
for _,v in ipairs({...}) do local result = { tostring(LogLevel[level]), Logging.deepStringify(message) }
table.insert(result, deepStringify(v)) for _,v in ipairs({...}) do
table.insert(result, Logging.deepStringify(v))
end
self.output(table.concat(result, " "))
end end
self.output(table.concat(result, " "), level)
end end
function Logger:trace(message, ...) function Logger:trace(message, ...)

View File

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