aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-10-04 19:52:10 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-10-04 19:52:10 +0000
commitd0755b981470901dc644550f1857f48e7bae6e8a (patch)
treeec016d1ff8b845e535c40b4fc4981550e2fda892 /activesupport/CHANGELOG
parent41bfedeac273d83585d3cdb2f181ae1978d31adb (diff)
downloadrails-d0755b981470901dc644550f1857f48e7bae6e8a.tar.gz
rails-d0755b981470901dc644550f1857f48e7bae6e8a.tar.bz2
rails-d0755b981470901dc644550f1857f48e7bae6e8a.zip
Disabling auto_flushing still flushes when the buffer hits a maximum size, as a failsafe against memory-gobbling.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7739 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 089c50d545..e621ee2f44 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -2,7 +2,7 @@
* Hash#to_json takes :only or :except options to specific or omit certain hash keys. Enumerable#to_json passes through its options to each element. #9751 [Chu Yeow]
-* BufferedLogger#auto_flushing = N flushes the log every N messages. Buffers with an array instead of string. [Jeremy Kemper]
+* BufferedLogger#auto_flushing = N flushes the log every N messages. Buffers with an array instead of string. Disabling auto_flushing still flushes when the buffer hits a maximum size, as a failsafe against memory-gobbling. [Jeremy Kemper]
* Fixed Date#xmlschema for dates outside the range of what can be created with Time #9744 [Geoff Buesing]