diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-05-28 16:10:22 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-05-28 16:10:22 +0100 |
commit | 8380f14038737d3f8ef91e386e5be01126f56d79 (patch) | |
tree | d9418c93f59e25e4560d7689c4780a4874018023 /plugins | |
parent | 4261dc5e768b4566e0a5e98f8d32b3238d423c3e (diff) | |
download | prosody-8380f14038737d3f8ef91e386e5be01126f56d79.tar.gz prosody-8380f14038737d3f8ef91e386e5be01126f56d79.zip |
mod_s2s: Remove unnecessary debug message
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index 5a2af968..ab5b7232 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -616,7 +616,6 @@ function listener.ondisconnect(conn, err) if err and session.direction == "outgoing" and session.notopen then (session.log or log)("debug", "s2s connection attempt failed: %s", err); if s2sout.attempt_connection(session, err) then - (session.log or log)("debug", "...so we're going to try another target"); return; -- Session lives for now end end |