aboutsummaryrefslogtreecommitdiffstats
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
commit32d6e4e07c88ab677b4cb92ad038a99b85f7a68b (patch)
treeddd9cbc07aa5518f7bd7d53e5b66e4c362c7ebde
parent87a7a0e66fd522344905b8b09c8e067bcc901b6a (diff)
downloadprosody-32d6e4e07c88ab677b4cb92ad038a99b85f7a68b.tar.gz
prosody-32d6e4e07c88ab677b4cb92ad038a99b85f7a68b.zip
sessionmanager, mod_s2s: Bring debug line for outgoing stanzas in line with that for incoming
-rw-r--r--core/sessionmanager.lua2
-rw-r--r--plugins/mod_s2s/mod_s2s.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua
index 429ec776..2843001a 100644
--- a/core/sessionmanager.lua
+++ b/core/sessionmanager.lua
@@ -33,7 +33,7 @@ local function new_session(conn)
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("^[^>]*>?"));
+ session.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
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