mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.debug: Add catch for an "error in error handling"
This commit is contained in:
parent
995f757ab2
commit
5030d1d07c
1 changed files with 9 additions and 1 deletions
|
@ -88,7 +88,15 @@ function get_traceback_table(thread, start_level)
|
|||
return levels;
|
||||
end
|
||||
|
||||
function debug.traceback(thread, message, level)
|
||||
function debug.traceback(...)
|
||||
local ok, ret = pcall(debug._traceback, ...);
|
||||
if not ok then
|
||||
return "Error in error handling: "..ret;
|
||||
end
|
||||
return ret;
|
||||
end
|
||||
|
||||
function debug._traceback(thread, message, level)
|
||||
if type(thread) ~= "thread" then
|
||||
thread, message, level = coroutine.running(), thread, message;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue