aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-02-09 13:31:10 +0000
committerMatthew Wild <mwild1@gmail.com>2009-02-09 13:31:10 +0000
commit80a1fa8fa43c667f83a0b8dda63194cf7829dd99 (patch)
treebc8cb480028303460d28c71b492b040712876773 /plugins
parentc2064aa2cc4e5d7f0f100b15f53b6adfbc5fd871 (diff)
downloadprosody-80a1fa8fa43c667f83a0b8dda63194cf7829dd99.tar.gz
prosody-80a1fa8fa43c667f83a0b8dda63194cf7829dd99.zip
Remove redundant logging and debug printing from mod_bosh
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_bosh.lua8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua
index 3dd7a6a0..1fed2e3b 100644
--- a/plugins/mod_bosh.lua
+++ b/plugins/mod_bosh.lua
@@ -42,7 +42,7 @@ function handle_request(method, body, request)
log("debug", "Request %s suffered error %s", tostring(request.id), body);
return;
end
- log("debug", "Handling new request %s: %s\n----------", request.id, tostring(body));
+ --log("debug", "Handling new request %s: %s\n----------", request.id, tostring(body));
request.notopen = true;
request.log = log;
local parser = lxp.new(init_xmlhandlers(request, stream_callbacks), "|");
@@ -79,7 +79,7 @@ function handle_request(method, body, request)
waiting_requests[request] = true;
end
- log("debug", "Had nothing to say, so leaving request unanswered for now");
+ log("debug", "Have nothing to say, so leaving request unanswered for now");
return true;
end
end
@@ -101,8 +101,6 @@ local function bosh_close_stream(session, reason)
end
function stream_callbacks.streamopened(request, attr)
- print("Attr:")
- for k,v in pairs(attr) do print("", k, v); end
log("debug", "BOSH body open (sid: %s)", attr.sid);
local sid = attr.sid
if not sid then
@@ -139,7 +137,7 @@ function stream_callbacks.streamopened(request, attr)
log("debug", "We have an open request, so using that to send with");
response.body = t_concat{"<body xmlns='http://jabber.org/protocol/httpbind' sid='", sid, "' xmlns:stream = 'http://etherx.jabber.org/streams'>", tostring(s), "</body>" };
oldest_request:send(response);
- log("debug", "Sent");
+ --log("debug", "Sent");
if oldest_request.stayopen then
if #r>1 then
-- Move front request to back