From 5af124307659e37a47a90b9e9e40a4b017fa0a3e Mon Sep 17 00:00:00 2001 From: aamine Date: Sun, 16 Nov 2003 03:16:42 +0000 Subject: * lib/net/protocol.rb: logging response body. [experimental] [ruby-list:38800] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/protocol.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/net') diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb index 3c76955cfe..316f5e51a2 100644 --- a/lib/net/protocol.rb +++ b/lib/net/protocol.rb @@ -120,7 +120,7 @@ module Net # :nodoc: def read( len, dest = '', ignore_eof = false ) LOG "reading #{len} bytes..." - LOG_off() + # LOG_off() # experimental: [ruby-list:38800] read_bytes = 0 begin while read_bytes + @rbuf.size < len @@ -131,14 +131,14 @@ module Net # :nodoc: rescue EOFError raise unless ignore_eof end - LOG_on() + # LOG_on() LOG "read #{read_bytes} bytes" dest end def read_all( dest = '' ) LOG 'reading all...' - LOG_off() + # LOG_off() # experimental: [ruby-list:38800] read_bytes = 0 begin while true @@ -148,7 +148,7 @@ module Net # :nodoc: rescue EOFError ; end - LOG_on() + # LOG_on() LOG "read #{read_bytes} bytes" dest end -- cgit v1.2.3