aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2011-02-22 18:27:31 +0000
committerMatthew Wild <mwild1@gmail.com>2011-02-22 18:27:31 +0000
commit6d11c941c0af59adc26f330f67461ee3ad2c4c5b (patch)
tree55dd1d25b14918ff50d93b84f557ee439e185342 /core/s2smanager.lua
parent4d6276c7b4217f75a7ffaa4812dfabdf35f2e955 (diff)
downloadprosody-6d11c941c0af59adc26f330f67461ee3ad2c4c5b.tar.gz
prosody-6d11c941c0af59adc26f330f67461ee3ad2c4c5b.zip
s2smanager: Drop some log messages to debug level from info/warn
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 0fb055cb..a2379f22 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -167,7 +167,7 @@ function new_incoming(conn)
return; -- Ok, we're connect[ed|ing]
end
-- Not connected, need to close session and clean up
- (session.log or log)("warn", "Destroying incomplete session %s->%s due to inactivity",
+ (session.log or log)("debug", "Destroying incomplete session %s->%s due to inactivity",
session.from_host or "(unknown)", session.to_host or "(unknown)");
session:close("connection-timeout");
end);
@@ -625,7 +625,7 @@ end
function destroy_session(session, reason)
if session.destroyed then return; end
- (session.log or log)("info", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host));
+ (session.log or log)("debug", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host));
if session.direction == "outgoing" then
hosts[session.from_host].s2sout[session.to_host] = nil;