aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-07-24 19:07:26 +0200
committerKim Alvefur <zash@zash.se>2018-07-24 19:07:26 +0200
commit15de51f8c507f8d0f2c18d22a601aec60cf461b8 (patch)
treeddd9cbc07aa5518f7bd7d53e5b66e4c362c7ebde /plugins
parentf86af442083973907f7cfeadd186a3d77432fa7c (diff)
downloadprosody-15de51f8c507f8d0f2c18d22a601aec60cf461b8.tar.gz
prosody-15de51f8c507f8d0f2c18d22a601aec60cf461b8.zip
sessionmanager, mod_s2s: Bring debug line for outgoing stanzas in line with that for incoming
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_s2s/mod_s2s.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua
index ddc49134..70b8d329 100644
--- a/plugins/mod_s2s/mod_s2s.lua
+++ b/plugins/mod_s2s/mod_s2s.lua
@@ -571,7 +571,7 @@ local function initialize_session(session)
local w = conn.write;
function session.sends2s(t)
- log("debug", "sending: %s", t.top_tag and t:top_tag() or t:match("^[^>]*>?"));
+ log("debug", "Sending[%s]: %s", session.type, t.top_tag and t:top_tag() or t:match("^[^>]*>?"));
if t.name then
t = filter("stanzas/out", t);
end