util.debug: Adjust level within get_locals_table() to account for the additional depth of this function itself

This commit is contained in:
Matthew Wild 2012-01-13 15:46:36 +00:00
parent 351b8347c8
commit e898c68304

View file

@ -9,6 +9,7 @@ local censored_names = {
};
local function get_locals_table(level)
level = level + 1; -- Skip this function itself
local locals = {};
for local_num = 1, math.huge do
local name, value = debug.getlocal(level, local_num);