Software /
code /
prosody
Changeset
9066:af97ecd00734
sessionmanager: Log top tag of outgoing stanzas on c2s (#776)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 22 Jul 2018 19:41:29 +0200 |
parents | 8998:6bddc90eeb27 |
children | 9067:89e1bf37ff64 |
files | core/sessionmanager.lua |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/core/sessionmanager.lua Sun Jul 08 16:48:59 2018 +0200 +++ b/core/sessionmanager.lua Sun Jul 22 19:41:29 2018 +0200 @@ -32,6 +32,7 @@ local filter = initialize_filters(session); local w = conn.write; session.send = function (t) + session.log("debug", "sending: %s", t.top_tag and t:top_tag() or t:match("^[^>]*>?")); if t.name then t = filter("stanzas/out", t); end