Trace itemStack nil countDelta value
This commit is contained in:
parent
3d01e66364
commit
71406dfe11
10
logging.lua
10
logging.lua
@ -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, ...)
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user