diff options
author | Kim Alvefur <zash@zash.se> | 2017-01-28 15:31:57 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-01-28 15:31:57 +0100 |
commit | d1e163f9d75687db9250df12eeff7e2dad5e4bc9 (patch) | |
tree | 5a4795bb874d35aa8eb31872bdb16651e3335505 /plugins | |
parent | c8b213ff4f88ac6c0d21e58669d399d12f82c5b8 (diff) | |
download | prosody-d1e163f9d75687db9250df12eeff7e2dad5e4bc9.tar.gz prosody-d1e163f9d75687db9250df12eeff7e2dad5e4bc9.zip |
mod_pep: Add some additional debug logging
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_pep.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index 46517b95..5d6485fa 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -185,7 +185,11 @@ module:hook("iq/bare/http://jabber.org/protocol/pubsub:pubsub", function(event) node = node, user = jid_bare(session.full_jid), actor = session.jid, id = id, session = session, item = st.clone(payload); }); return true; + else + module:log("debug", "Payload is missing the <item>", node); end + else + module:log("debug", "Unhandled payload: %s", payload and payload:top_tag() or "(no payload)"); end elseif stanza.attr.type == 'get' then local user = stanza.attr.to and jid_bare(stanza.attr.to) or session.username..'@'..session.host; @@ -221,14 +225,17 @@ module:hook("iq/bare/http://jabber.org/protocol/pubsub:pubsub", function(event) end elseif node then -- node doesn't exist session.send(st.error_reply(stanza, 'cancel', 'item-not-found')); + module:log("debug", "Item '%s' not found", node) return true; else --invalid request session.send(st.error_reply(stanza, 'modify', 'bad-request')); + module:log("debug", "Invalid request: %s", tostring(payload)); return true; end else --no presence subscription session.send(st.error_reply(stanza, 'auth', 'not-authorized') :tag('presence-subscription-required', {xmlns='http://jabber.org/protocol/pubsub#errors'})); + module:log("debug", "Unauthorized request: %s", tostring(payload)); return true; end end |