aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2014-09-01 04:20:21 -0700
committerGodfrey Chan <godfreykfc@gmail.com>2014-09-01 04:20:21 -0700
commit3bac1cb8b35df2e9bfa52c93e2a886926db4f6bc (patch)
treeb6423df7e7fe768e13fea83ce9de014fca11a0be /guides/source/configuring.md
parent095241dd76e83087bbd9f0d26def8757aa9dc337 (diff)
parent072f1032b141317746bbd67f35767d50d2544e18 (diff)
downloadrails-3bac1cb8b35df2e9bfa52c93e2a886926db4f6bc.tar.gz
rails-3bac1cb8b35df2e9bfa52c93e2a886926db4f6bc.tar.bz2
rails-3bac1cb8b35df2e9bfa52c93e2a886926db4f6bc.zip
Merge pull request #16763 from brainopia/patch-1
Fix for configuring rails guide [ci skip]
Diffstat (limited to 'guides/source/configuring.md')
-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.