mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.debug: Add +1 to level when getting locals table, to account for current function
This commit is contained in:
parent
04a6860173
commit
463e2326d9
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ function get_traceback_table(thread, start_level)
|
|||
levels[(level-start_level)+1] = {
|
||||
level = level;
|
||||
info = info;
|
||||
locals = get_locals_table(level);
|
||||
locals = get_locals_table(level+1);
|
||||
upvalues = get_upvalues_table(info.func);
|
||||
};
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue