aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-08 20:44:32 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-08 20:44:32 +0000
commiteafc61c9991e0a1db7c0711f94bc5b97b7f3dd47 (patch)
tree3b0f06b12842da27d010c47d95efcc2cad395efd /core
parent8b42a2b8d80bcc227274d133067ac58c6a197ca2 (diff)
downloadprosody-eafc61c9991e0a1db7c0711f94bc5b97b7f3dd47.tar.gz
prosody-eafc61c9991e0a1db7c0711f94bc5b97b7f3dd47.zip
Fix some very misleading logging
Diffstat (limited to 'core')
-rw-r--r--core/s2smanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 7b4f6d0a..2f2f1d92 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -40,7 +40,7 @@ function send_to_host(from_host, to_host, data)
else
log("debug", "going to send stanza to "..to_host.." from "..from_host);
-- FIXME
- if hosts[to_host].from_host ~= from_host then log("error", "WARNING! This is a bug!!!!"); end
+ if hosts[to_host].from_host ~= from_host then log("error", "WARNING! This might, possibly, be a bug, but it might not..."); end
hosts[to_host].sends2s(data);
log("debug", "stanza sent over "..hosts[to_host].type);
end