aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorThierry Joyal <thierry.joyal@gmail.com>2017-01-24 12:48:43 +0000
committerThierry Joyal <thierry.joyal@gmail.com>2017-02-27 21:01:30 +0000
commit62fba74932a72ee8104712a3db432b593fe0c6af (patch)
tree8aec22292596886a1a0dac60cb57c0fd47967b20 /activesupport/CHANGELOG.md
parent4cc1c14493e7a9bd188ee13c237366f6bc2e13f4 (diff)
downloadrails-62fba74932a72ee8104712a3db432b593fe0c6af.tar.gz
rails-62fba74932a72ee8104712a3db432b593fe0c6af.tar.bz2
rails-62fba74932a72ee8104712a3db432b593fe0c6af.zip
TaggedLogging to return a new logger instance
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 0614cdaabd..d8d8e061cb 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Changed `ActiveSupport::TaggedLogging.new` to return a new logger instance instead of mutating the one received as parameter.
+
+ *Thierry Joyal*
+
* Add `ActiveSupport::Duration#before` and `#after` as aliases for `#until` and `#since`
These read more like English and require less mental gymnastics to read and write.