# HG changeset patch # User Kim Alvefur # Date 1527020759 -7200 # Node ID 1348a931528a030ec154fd11bffc50fca0af1991 # Parent c96c00dc424b6e90cdb4f98cb9b2bfa6df0cb289# Parent 780d728f969f5108a81b2297162d53c3de6f4b40 Merge 0.10->trunk diff -r c96c00dc424b -r 1348a931528a plugins/mod_c2s.lua --- a/plugins/mod_c2s.lua Tue May 22 21:22:51 2018 +0200 +++ b/plugins/mod_c2s.lua Tue May 22 22:25:59 2018 +0200 @@ -172,7 +172,7 @@ function session.send() return false; end local reason_text = (reason and (reason.name or reason.text or reason.condition)) or reason; - session.log("debug", "c2s stream for %s closed: %s", session.full_jid or ("<"..session.ip..">"), reason_text or "session closed"); + session.log("debug", "c2s stream for %s closed: %s", session.full_jid or session.ip or "", reason_text or "session closed"); -- Authenticated incoming stream may still be sending us stanzas, so wait for from remote local conn = session.conn;