diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-06-05 21:37:33 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-06-05 21:37:33 +0100 |
commit | 885b4a7e2a8565d7d9fa9a1fd97723dc4af0d129 (patch) | |
tree | 6e9f78aae4b1442ad2bce195f9e2d4011077115f /plugins | |
parent | a4eb37148c0ef50dee686ec0ab28d1f6e811fdf0 (diff) | |
download | prosody-885b4a7e2a8565d7d9fa9a1fd97723dc4af0d129.tar.gz prosody-885b4a7e2a8565d7d9fa9a1fd97723dc4af0d129.zip |
mod_bosh: Remove some very verbose logging
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_bosh.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index 03355564..3c5e18f0 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -139,9 +139,6 @@ function handle_POST(event) 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..."); |