net.http.parser: Remove accidentally-committed debugging
authorMatthew Wild <mwild1@gmail.com>
Mon, 15 Apr 2013 21:25:59 +0100
changeset 5477 50cbea68586f
parent 5475 c2c9f07c5d6a
child 5478 de19e6005f1a
child 5479 81c599c7588b
net.http.parser: Remove accidentally-committed debugging
net/http/parser.lua
--- a/net/http/parser.lua	Mon Apr 15 21:21:57 2013 +0100
+++ b/net/http/parser.lua	Mon Apr 15 21:25:59 2013 +0100
@@ -133,7 +133,6 @@
 								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;