aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-04-15 21:25:59 +0100
committerMatthew Wild <mwild1@gmail.com>2013-04-15 21:25:59 +0100
commit427b82db0fd0d82101013628e0bc4158eeb72c06 (patch)
tree4458cad42819d93c49bb5bed4a279ea396438161 /net
parent91b727be710169b424cae0cd9f7d782230599b2b (diff)
downloadprosody-427b82db0fd0d82101013628e0bc4158eeb72c06.tar.gz
prosody-427b82db0fd0d82101013628e0bc4158eeb72c06.zip
net.http.parser: Remove accidentally-committed debugging
Diffstat (limited to 'net')
-rw-r--r--net/http/parser.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua
index 9688e052..f9e6cea0 100644
--- a/net/http/parser.lua
+++ b/net/http/parser.lua
@@ -133,7 +133,6 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb)
buf = buf:gsub("^.-\r\n\r\n", ""); -- This ensure extensions and trailers are stripped
success_cb(packet);
elseif #buf - chunk_start + 2 >= chunk_size then -- we have a chunk
- print(chunk_start, chunk_size, ("%q"):format(buf))
packet.body = packet.body..buf:sub(chunk_start, chunk_start + (chunk_size-1));
buf = buf:sub(chunk_start + chunk_size + 2);
chunk_size, chunk_start = nil, nil;