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 | 2e3f198799b27ea3b6d5a9e90b08bff23c42ac62 (patch) | |
tree | d9418c93f59e25e4560d7689c4780a4874018023 /plugins | |
parent | de91cf38b186b4cd02863e84f69c513b83c85ebb (diff) | |
download | prosody-2e3f198799b27ea3b6d5a9e90b08bff23c42ac62.tar.gz prosody-2e3f198799b27ea3b6d5a9e90b08bff23c42ac62.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 |