# HG changeset patch # User Matthew Wild # Date 1472849860 -3600 # Node ID 7cc3d6c764cea5de2df8c64edb4e12ff7b07edc4 # Parent 55f11a6806bc142241903e156cea13d1e04a9bc1 mod_bosh: Log when a stanza isn't handled because we can't find a session for it diff -r 55f11a6806bc -r 7cc3d6c764ce plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Fri Sep 02 21:57:22 2016 +0100 +++ b/plugins/mod_bosh.lua Fri Sep 02 21:57:40 2016 +0100 @@ -412,6 +412,8 @@ return xpcall(function () return core_process_stanza(session, stanza) end, handleerr); end end + else + log("debug", "No session for this stanza! (sid: %s)", context.sid or "none!"); end end