mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.debug: Adjust level within get_locals_table() to account for the additional depth of this function itself
This commit is contained in:
parent
351b8347c8
commit
e898c68304
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue