mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
sessionmanager, mod_s2s: Bring debug line for outgoing stanzas in line with that for incoming
This commit is contained in:
parent
55f18c627d
commit
9ae687ec98
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,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
|
||||
|
|
|
@ -541,7 +541,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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue