mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Actually show error and position when we show a traceback :)
This commit is contained in:
parent
a94c596c02
commit
bc83d650a0
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ function xmppclient.listener(conn, data)
|
|||
-- (I'm on a mission, no time to fix now)
|
||||
|
||||
-- Debug version --
|
||||
local function handleerr() print("Traceback:", debug.traceback()); end
|
||||
local function handleerr(err) print("Traceback:", err, debug.traceback()); end
|
||||
session.stanza_dispatch = function (stanza) return select(2, xpcall(function () return core_process_stanza(session, stanza); end, handleerr)); end
|
||||
|
||||
-- session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end
|
||||
|
|
|
@ -64,7 +64,7 @@ function xmppserver.listener(conn, data)
|
|||
-- (I'm on a mission, no time to fix now)
|
||||
|
||||
-- Debug version --
|
||||
local function handleerr() print("Traceback:", debug.traceback()); end
|
||||
local function handleerr(err) print("Traceback:", err, debug.traceback()); end
|
||||
session.stanza_dispatch = function (stanza) return select(2, xpcall(function () return core_process_stanza(session, stanza); end, handleerr)); end
|
||||
|
||||
-- session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue