Changeset

5477:50cbea68586f

net.http.parser: Remove accidentally-committed debugging
author Matthew Wild <mwild1@gmail.com>
date Mon, 15 Apr 2013 21:25:59 +0100
parents 5475:c2c9f07c5d6a
children 5478:de19e6005f1a 5479:81c599c7588b
files net/http/parser.lua
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;