mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_s2s: Fix logging of <stream:error> consistency with other mods
`reason` was often a table, so the log said "table: 0xptr" or such. mod_c2s, mod_bosh etc logs the stream error stanza object, so better do the same. It would be nicer if this was an util.error object, but that will have to be a future change.
This commit is contained in:
parent
c5de2a9d22
commit
94d9ba7ce1
1 changed files with 1 additions and 1 deletions
|
@ -650,7 +650,7 @@ local function session_close(session, reason, remote_reason, bounce_reason)
|
|||
if st.is_stanza(stream_error) then
|
||||
-- to and from are never unknown on outgoing connections
|
||||
log("debug", "Disconnecting %s->%s[%s], <stream:error> is: %s",
|
||||
session.from_host or "(unknown host)" or session.ip, session.to_host or "(unknown host)", session.type, reason);
|
||||
session.from_host or "(unknown host)" or session.ip, session.to_host or "(unknown host)", session.type, stream_error);
|
||||
session.sends2s(stream_error);
|
||||
end
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue