diff options
author | Kim Alvefur <zash@zash.se> | 2013-08-14 14:44:56 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-08-14 14:44:56 +0200 |
commit | b21a19359832f4007ae3a713d89f4b3779bcd297 (patch) | |
tree | 47e3a6c330e4793a15e0572bb63376095110e158 | |
parent | 2666d8e8e7b2cdbad8d61caf1351d24782c0da74 (diff) | |
download | prosody-b21a19359832f4007ae3a713d89f4b3779bcd297.tar.gz prosody-b21a19359832f4007ae3a713d89f4b3779bcd297.zip |
mod_s2s: Lower "Beginning new connection attempt" message from info to debug level
-rw-r--r-- | plugins/mod_s2s/s2sout.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s/s2sout.lib.lua b/plugins/mod_s2s/s2sout.lib.lua index 9500cac7..ec8ea4d4 100644 --- a/plugins/mod_s2s/s2sout.lib.lua +++ b/plugins/mod_s2s/s2sout.lib.lua @@ -265,7 +265,7 @@ function s2sout.try_connect(host_session, connect_host, connect_port, err) end function s2sout.make_connect(host_session, connect_host, connect_port) - (host_session.log or log)("info", "Beginning new connection attempt to %s ([%s]:%d)", host_session.to_host, connect_host.addr, connect_port); + (host_session.log or log)("debug", "Beginning new connection attempt to %s ([%s]:%d)", host_session.to_host, connect_host.addr, connect_port); -- Reset secure flag in case this is another -- connection attempt after a failed STARTTLS |