Remove some overly-verbose debug log output

This commit is contained in:
Matthew Wild 2008-10-24 15:33:38 +01:00
parent b3d6f36fb1
commit f9d8f8970f

View file

@ -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