diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-03-09 18:46:19 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-03-09 18:46:19 +0000 |
commit | 4689bd441e02d84d1b4d7c92c799c506ded4d400 (patch) | |
tree | 7c222d85dc580e33e11963d66a26a2c6bb1c7b1e /core | |
parent | af22709a5ec8dd87242e7f69de6ab33cdf7cc41c (diff) | |
parent | 6d4dea87b271b2b7aafddb96dd42c0dfcbf11b55 (diff) | |
download | prosody-4689bd441e02d84d1b4d7c92c799c506ded4d400.tar.gz prosody-4689bd441e02d84d1b4d7c92c799c506ded4d400.zip |
Merge 0.9->trunk
Diffstat (limited to 'core')
-rw-r--r-- | core/s2smanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index a27b2b2d..acb0baeb 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -549,7 +549,7 @@ function streamopened(session, attr) session.from_host = attr.from and nameprep(attr.from); session.streamid = uuid_gen(); - (session.log or log)("debug", "Incoming s2s received <stream:stream>"); + (session.log or log)("debug", "Incoming s2s received %s", st.stanza("stream:stream", attr):top_tag()); if session.to_host then if not hosts[session.to_host] then -- Attempting to connect to a host we don't serve |