diff --git a/ChangeLog b/ChangeLog index 0d56aa9570..ac9ed5c994 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Nov 16 12:16:10 2003 Minero Aoki + + * lib/net/protocol.rb: logging response body. [experimental] + [ruby-list:38800] + Sun Nov 16 10:49:38 2003 Gavin Sinclair * lib/thread.rb (Thread.exclusive): wrap method definition in 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