Actually show error and position when we show a traceback :)

This commit is contained in:
Matthew Wild 2008-11-09 20:15:31 +00:00
parent a94c596c02
commit bc83d650a0
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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