From 2fdf51a7fd546786f8400c8bf8c4147ec9d5e8e2 Mon Sep 17 00:00:00 2001 From: aamine Date: Sun, 9 May 2004 16:19:35 +0000 Subject: * lib/net/pop.rb (loggin): append "\n". git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ lib/net/pop.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5d74194ea..9ee58701e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,17 @@ +Mon May 10 01:18:15 2004 Minero Aoki + + * lib/net/pop.rb (loggin): append "\n". + Sun May 9 23:38:00 2004 Gavin Sinclair * lib/net/ftp.rb: ported documentation improvement from 1.8 branch + * lib/net/imap.rb: ditto + * lib/net/pop.rb: ditto + * lib/net/smtp.rb: ditto + * lib/net/telnet.rb: ditto Sun May 9 23:34:51 2004 NAKAMURA, Hiroshi diff --git a/lib/net/pop.rb b/lib/net/pop.rb index 056268c76..f9d64aa8f 100644 --- a/lib/net/pop.rb +++ b/lib/net/pop.rb @@ -678,7 +678,7 @@ module Net end def logging(msg) - @debug_output << msg if @debug_output + @debug_output << msg + "\n" if @debug_output end end # class POP3 -- cgit