mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.debug: Re-fix parameter handling (I think it matches debug.traceback() more accurately now) and document level fudge
This commit is contained in:
parent
e8d147c96a
commit
04a6860173
1 changed files with 16 additions and 11 deletions
|
@ -119,21 +119,26 @@ end
|
|||
|
||||
function _traceback(thread, message, level)
|
||||
|
||||
if type(thread) ~= "thread" then
|
||||
-- Lua manual says: debug.traceback ([thread,] [message [, level]])
|
||||
-- I fathom this to mean one of:
|
||||
-- ()
|
||||
-- (thread)
|
||||
-- (message, level)
|
||||
-- (thread, message, level)
|
||||
|
||||
if thread == nil then -- Defaults
|
||||
thread, message, level = coroutine.running(), message, level;
|
||||
elseif type(thread) == "string" then
|
||||
thread, message, level = coroutine.running(), thread, message;
|
||||
elseif type(thread) ~= "thread" then
|
||||
return nil; -- debug.traceback() does this
|
||||
end
|
||||
if level and type(message) ~= "string" then
|
||||
return nil, "invalid message";
|
||||
elseif not level then
|
||||
if type(message) == "number" then
|
||||
level, message = message, nil;
|
||||
else
|
||||
level = 1;
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
level = level or 1;
|
||||
|
||||
message = message and (message.."\n") or "";
|
||||
|
||||
-- +3 counts for this function, and the pcall() and wrapper above us
|
||||
local levels = get_traceback_table(thread, level+3);
|
||||
|
||||
local last_source_desc;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue