Diff

plugins/mod_bosh.lua @ 5646:c4b6ebea7185

mod_bosh: Remove some very verbose logging
author Matthew Wild <mwild1@gmail.com>
date Wed, 05 Jun 2013 21:37:33 +0100
parent 5645:ae079d57af2e
child 5647:8767b47524c9
line wrap: on
line diff
--- a/plugins/mod_bosh.lua	Wed Jun 05 21:36:29 2013 +0100
+++ b/plugins/mod_bosh.lua	Wed Jun 05 21:37:33 2013 +0100
@@ -139,9 +139,6 @@
 		local r = session.requests;
 		log("debug", "Session %s has %d out of %d requests open", context.sid, #r, session.bosh_hold);
 		log("debug", "and there are %d things in the send_buffer:", #session.send_buffer);
-		for i, thing in ipairs(session.send_buffer) do
-			log("debug", "    %s", tostring(thing));
-		end
 		if #r > session.bosh_hold then
 			-- We are holding too many requests, send what's in the buffer,
 			log("debug", "We are holding too many requests, so...");