From 4269ce372ddce2ea50392733be099b00486ec6c8 Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Tue, 7 Oct 2008 16:07:12 -0700 Subject: [PATCH] Turn off debugging output in httpcli2 --- lib/protocols/httpcli2.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/protocols/httpcli2.rb b/lib/protocols/httpcli2.rb index 232c3d3a8..cda359bd7 100644 --- a/lib/protocols/httpcli2.rb +++ b/lib/protocols/httpcli2.rb @@ -134,7 +134,7 @@ def receive_chunk_header ln end else # We correctly come here after each chunk gets read. - p "Got A BLANK chunk line" + # p "Got A BLANK chunk line" end end @@ -144,7 +144,7 @@ def receive_chunk_header ln # We get a single chunk. Append it to the incoming content and switch back to line mode. # def receive_chunked_text text - p "RECEIVED #{text.length} CHUNK" + # p "RECEIVED #{text.length} CHUNK" (@content ||= []) << text end