aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsonots <sonots@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-19 03:55:13 +0000
committersonots <sonots@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-19 03:55:13 +0000
commit7bb039973c6e2b05d4eca6ac97229e9c31ecf168 (patch)
tree4ba5a9557a6abd31a5562b3e23fff0a234929d59
parentdd4f5901968487051e4cf5f3fdef640fce1a9e35 (diff)
downloadruby-7bb039973c6e2b05d4eca6ac97229e9c31ecf168.tar.gz
* ChangeLog: Add descriptions for logger updates
* NEWS: Add descriptions for logger updates git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog14
-rw-r--r--NEWS6
2 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 003528fb51..7b8b02ed79 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+Thu Mar 19 12:45:03 2016 Naotoshi Seo <sonots@gmail.com>
+
+ * ChangeLog: Add decriptions for logger updates
+ * NEWS: Add descriptions for logger updates
+
+Mon Apr 19 12:45:02 2016 Naotoshi Seo <sonots@gmail.com>
+
+ * lib/logger.rb: Add shift_period_suffix option
+
+Mon Apr 19 12:45:01 2016 Naotoshi Seo <sonots@gmail.com>
+
+ * lib/logger.rb: Allow specifying logger parameters in constructor
+ such as level, progname, datetime_format, formatter.
+
Mon Apr 18 16:07:01 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* compile.c (iseq_peephole_optimize): should not replace the
diff --git a/NEWS b/NEWS
index 31b0a25434..67b4f25a88 100644
--- a/NEWS
+++ b/NEWS
@@ -64,6 +64,12 @@ with all sufficient information, see the ChangeLog file or Redmine
* Add a liberal_parsing option. [Feature #11839]
+* Logger
+
+ * Allow specifying logger parameters in constructor such
+ as level, progname, datetime_format, formatter. [Feature #12224]
+ * Add shift_period_suffix option. [Feature #10772]
+
* optparse
* Add an into option. [Feature #11191]