aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
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
commitc2d1ea2b041c913393b1312faf8518256d33d1c2 (patch)
tree673612cdf094b68521d9e38a848e2345dbdd6663 /plugins
parent3f73da1155c3037a48abae227e661540fecabd04 (diff)
downloadprosody-c2d1ea2b041c913393b1312faf8518256d33d1c2.tar.gz
prosody-c2d1ea2b041c913393b1312faf8518256d33d1c2.zip
mod_s2s: Reduce logging (#776)
Diffstat (limited to 'plugins')
-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 1f38c13a..f182df52 100644
--- a/plugins/mod_s2s/mod_s2s.lua
+++ b/plugins/mod_s2s/mod_s2s.lua
@@ -110,14 +110,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", tostring(host.from_host), tostring(from_host));
end
if host.sends2s(stanza) then
- host.log("debug", "stanza sent over %s", host.type);
return true;
end
end