From f154226900b258f6f51b328fab98becd6c23f5f7 Mon Sep 17 00:00:00 2001 From: drbrain Date: Thu, 12 May 2011 20:45:45 +0000 Subject: [PATCH] =?UTF-8?q?=09*=20lib/logger.rb=20(class=20Logger):=20=20D?= =?UTF-8?q?ocument=20Logger#datetime=5Fformat.=20=09=20=20Patch=20by=20Ser?= =?UTF-8?q?gio=20Gil=20P=C3=83=C2=A9rez=20de=20la=20Manga.=20=20[Ruby=201.?= =?UTF-8?q?9=20-=20Bug=20#4678]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31537 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 21 +++++++++++++++++++++ lib/logger.rb | 1 + 2 files changed, 22 insertions(+) diff --git a/ChangeLog b/ChangeLog index 93453697d1..c4f1c24755 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +Fri May 13 05:44:19 2011 Eric Hodel + + * lib/logger.rb (class Logger): Document Logger#datetime_format. + Patch by Sergio Gil Pérez de la Manga. [Ruby 1.9 - Bug #4678] + +Fri May 13 05:39:11 2011 Eric Hodel + + * re.c (Init_Regexp): Document option constants. Patch by Vincent + Batts. [Ruby 1.9 - Bug #4677] + * lib/uri/common.rb (module URI): Documentation for URI. Patch by + Vincent Batts. [Ruby 1.9- Bug #4677] + * lib/uri/ftp.rb (module URI): ditto + * lib/uri/generic.rb (module URI): ditto + * lib/uri/http.rb (module URI): ditto + * lib/uri/https.rb (module URI): ditto + * lib/uri/ldap.rb (module URI): ditto + * lib/uri/ldaps.rb (module URI): ditto + * lib/uri/mailto.rb (module URI): ditto + * process.c (Init_process): Document Process constants. Patch by + Vincent Batts. [Ruby 1.9- Bug #4677] + Fri May 13 05:16:38 2011 Eric Hodel * lib/rss/atom.rb (module RSS): Document URIs. Patch by Mark Turner. diff --git a/lib/logger.rb b/lib/logger.rb index ad1c06fb0e..283db8d1f8 100644 --- a/lib/logger.rb +++ b/lib/logger.rb @@ -224,6 +224,7 @@ class Logger @default_formatter.datetime_format = datetime_format end + # Returns the date format (string passed to +strftime+) being used (it's set using datetime_format=) def datetime_format @default_formatter.datetime_format end