aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-10-24 15:33:38 +0100
committerMatthew Wild <mwild1@gmail.com>2008-10-24 15:33:38 +0100
commitf9d8f8970fb8c9a2da897e2ac0033373bccd3bfd (patch)
treea47196099f2899d5d1cd558983fdb73b860c525c /core/s2smanager.lua
parentb3d6f36fb15531b98641f72bef4f3ed9ebb29471 (diff)
downloadprosody-f9d8f8970fb8c9a2da897e2ac0033373bccd3bfd.tar.gz
prosody-f9d8f8970fb8c9a2da897e2ac0033373bccd3bfd.zip
Remove some overly-verbose debug log output
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua1
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