diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-14 02:38:41 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-14 02:38:41 +0000 |
commit | 6d9485225a4c8c9b339ca9cea137ba3f2de6fd64 (patch) | |
tree | 3997aed8d9363f78f09eac2d057c75f18fd486ce | |
parent | c374478423b1fa6df31f2e133db77f89ceb91fac (diff) | |
download | prosody-6d9485225a4c8c9b339ca9cea137ba3f2de6fd64.tar.gz prosody-6d9485225a4c8c9b339ca9cea137ba3f2de6fd64.zip |
Yep, s2s definitely works now. This is just a small fix for logging...
-rw-r--r-- | core/s2smanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 8b421f13..4fa22957 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -48,7 +48,7 @@ function send_to_host(from_host, to_host, data) elseif host.type == "local" or host.type == "component" then log("error", "Trying to send a stanza to ourselves??") log("error", "Traceback: %s", get_traceback()); - log("error", "Stanza: %s", data); + log("error", "Stanza: %s", tostring(data)); else (host.log or log)("debug", "going to send stanza to "..to_host.." from "..from_host); -- FIXME |