net/xmppclient_listener.lua

changeset 226
ba4711c4e8d2
parent 166
d4ee015fcee4
child 232
20745f8f4cf1
--- a/net/xmppclient_listener.lua	Sat Nov 08 20:39:08 2008 +0000
+++ b/net/xmppclient_listener.lua	Sat Nov 08 20:42:23 2008 +0000
@@ -60,7 +60,12 @@
 		-- TODO: Below function should be session,stanza - and xmlhandlers should use :method() notation to call,
 		-- this will avoid the useless indirection we have atm
 		-- (I'm on a mission, no time to fix now)
-		session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end
+
+		-- Debug version --
+		local function handleerr() print("Traceback:", 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
 
 	end
 	if data then

mercurial