aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorIain D Broadfoot <ibroadfo@gmail.com>2014-03-21 14:59:42 +0000
committerIain D Broadfoot <ibroadfo@gmail.com>2014-03-21 14:59:42 +0000
commit3bbc96048d8de004ae5991f0d0399e4f8e4ce7fb (patch)
tree7f24ebfd1acfd2239e12d5a737196a2146970700 /guides
parent2ca3f338adfcf2fdc3ac43d7f4fe226e854a318d (diff)
downloadrails-3bbc96048d8de004ae5991f0d0399e4f8e4ce7fb.tar.gz
rails-3bbc96048d8de004ae5991f0d0399e4f8e4ce7fb.tar.bz2
rails-3bbc96048d8de004ae5991f0d0399e4f8e4ce7fb.zip
fix log_tags request object grammar
Diffstat (limited to 'guides')
-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 2cece90294..460fd3c301 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -110,7 +110,7 @@ numbers. New applications filter out passwords by adding the following `config.f
* `config.log_level` defines the verbosity of the Rails logger. This option defaults to `:debug` for all modes except production, where it defaults to `:info`.
-* `config.log_tags` accepts a list of methods that respond to `request` object. 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.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.