aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-17 15:25:07 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-17 15:25:07 +0000
commit8f2ff3a29016d2cbb3224b7ab3df5acfc821faf0 (patch)
tree9bcf6cb23e80b565d09fbbdbbf189b90bae4e856 /NEWS
parent612ea3c835f0d85ef44dfacf11dcf875654a9894 (diff)
downloadruby-8f2ff3a29016d2cbb3224b7ab3df5acfc821faf0.tar.gz
Logger is Stdlib instead of Core classes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52623 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS12
1 files changed, 6 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 7db552ae1e..2181830c18 100644
--- a/NEWS
+++ b/NEWS
@@ -77,12 +77,6 @@ with all sufficient information, see the ChangeLog file.
* Kernel#loop, when stopped by a StopIteration exception, returns
what the enumerator has returned instead of nil. [Feature #11498]
-* Logger
-
- * Logger#level= now supports symbol and string levels such as :debug, :info,
- :warn, :error, :fatal (case insensitive) [Feature #11695]
- * Logger#reopen is added to reopen a log device. [Feature #11696]
-
* Module
* Module#deprecate_constant [Feature #11398]
@@ -144,6 +138,12 @@ with all sufficient information, see the ChangeLog file.
=== Stdlib updates (outstanding ones only)
+* Logger
+
+ * Logger#level= now supports symbol and string levels such as :debug, :info,
+ :warn, :error, :fatal (case insensitive) [Feature #11695]
+ * Logger#reopen is added to reopen a log device. [Feature #11696]
+
* Socket
* Socket#connect_nonblock, Socket#accept_nonblock,
TCPServer#accept_nonblock, UNIXServer#accept_nonblock,