diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-10-05 19:10:21 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-10-05 19:10:21 +0100 |
commit | 0c9336110d8dceb2c9801ee68b9817801014fefe (patch) | |
tree | 61b7ce7a6bfc0919de331db7855cf2e04e349eaf /core/stanza_router.lua | |
parent | ab40a27df16e912e23812e2d75e52c7f083b81d8 (diff) | |
download | prosody-0c9336110d8dceb2c9801ee68b9817801014fefe.tar.gz prosody-0c9336110d8dceb2c9801ee68b9817801014fefe.zip |
Working TLS!
Diffstat (limited to 'core/stanza_router.lua')
-rw-r--r-- | core/stanza_router.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 89bea131..489bb96d 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -11,6 +11,7 @@ require "util.jid" local jid_split = jid.split; function core_process_stanza(origin, stanza) + log("debug", "Received: "..tostring(stanza)) local to = stanza.attr.to; if not to or (hosts[to] and hosts[to].type == "local") then |