aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorRavil Bayramgalin <brainopia@evilmartians.com>2014-09-01 10:41:01 +0400
committerRavil Bayramgalin <brainopia@evilmartians.com>2014-09-01 10:41:01 +0400
commit072f1032b141317746bbd67f35767d50d2544e18 (patch)
treeb6423df7e7fe768e13fea83ce9de014fca11a0be /guides/source
parent095241dd76e83087bbd9f0d26def8757aa9dc337 (diff)
downloadrails-072f1032b141317746bbd67f35767d50d2544e18.tar.gz
rails-072f1032b141317746bbd67f35767d50d2544e18.tar.bz2
rails-072f1032b141317746bbd67f35767d50d2544e18.zip
Fix for configuring rails guide
`ActiveSupport::Logger` has no concept like auto flushing since it has no userspace buffering. It's a remnant of `ActiveSupport::BufferedLogger` epoch which was since removed from rails.
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 38f9609287..8c452cc5ce 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -112,7 +112,7 @@ numbers. New applications filter out passwords by adding the following `config.f
* `config.log_tags` accepts a list of methods that the `request` object responds to. This makes it easy to tag log lines with debug information like subdomain and request id - both very helpful in debugging multi-user production applications.
-* `config.logger` accepts a logger conforming to the interface of Log4r or the default Ruby `Logger` class. Defaults to an instance of `ActiveSupport::Logger`, with auto flushing off in production mode.
+* `config.logger` accepts a logger conforming to the interface of Log4r or the default Ruby `Logger` class. Defaults to an instance of `ActiveSupport::Logger`.
* `config.middleware` allows you to configure the application's middleware. This is covered in depth in the [Configuring Middleware](#configuring-middleware) section below.