diff options
-rw-r--r-- | core/s2smanager.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 0f27655f..76381e2d 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -164,8 +164,9 @@ end function mark_connected(session) local sendq, send = session.sendq, session.send; + session.log("debug", session.direction.." s2s connection "..session.from_host.."->"..session.to_host.." is now complete"); if sendq then - session.log("debug", "sending queued stanzas across new connection"); + session.log("debug", "sending queued stanzas across new outgoing connection"); for i, data in ipairs(sendq) do send(data); sendq[i] = nil; |