diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-10-24 15:33:38 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-10-24 15:33:38 +0100 |
commit | f9d8f8970fb8c9a2da897e2ac0033373bccd3bfd (patch) | |
tree | a47196099f2899d5d1cd558983fdb73b860c525c /core | |
parent | b3d6f36fb15531b98641f72bef4f3ed9ebb29471 (diff) | |
download | prosody-f9d8f8970fb8c9a2da897e2ac0033373bccd3bfd.tar.gz prosody-f9d8f8970fb8c9a2da897e2ac0033373bccd3bfd.zip |
Remove some overly-verbose debug log output
Diffstat (limited to 'core')
-rw-r--r-- | core/s2smanager.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index be5b8243..38919d81 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -172,7 +172,6 @@ function mark_connected(session) if sendq then session.log("debug", "sending queued stanzas across new connection"); for i, data in ipairs(sendq) do - session.log("debug", "sending: %s", tostring(data)); send(data); sendq[i] = nil; end |