aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_s2s
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-07-22 19:45:58 +0200
committerKim Alvefur <zash@zash.se>2018-07-22 19:45:58 +0200
commitf86af442083973907f7cfeadd186a3d77432fa7c (patch)
treed5f3b8c8d1327706855e60e0a2489ee599a0046c /plugins/mod_s2s
parent59716b64dd89442bc70030d762e4ccbe7e70b176 (diff)
downloadprosody-f86af442083973907f7cfeadd186a3d77432fa7c.tar.gz
prosody-f86af442083973907f7cfeadd186a3d77432fa7c.zip
mod_s2s: Reduce logging (#776)
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r--plugins/mod_s2s/mod_s2s.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua
index e5fb8042..ddc49134 100644
--- a/plugins/mod_s2s/mod_s2s.lua
+++ b/plugins/mod_s2s/mod_s2s.lua
@@ -129,14 +129,12 @@ function route_to_existing_session(event)
log("error", "Stanza: %s", tostring(stanza));
return false;
else
- (host.log or log)("debug", "going to send stanza to "..to_host.." from "..from_host);
-- FIXME
if host.from_host ~= from_host then
log("error", "WARNING! This might, possibly, be a bug, but it might not...");
log("error", "We are going to send from %s instead of %s", host.from_host, from_host);
end
if host.sends2s(stanza) then
- host.log("debug", "stanza sent over %s", host.type);
return true;
end
end