aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2014-09-20 23:05:41 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2014-09-21 07:41:32 +0900
commit4f5d60f4f2110f458e6557a6353974babcb89787 (patch)
treea8984877cb0b6d4f1a18139c27d30fb8eb7a70c5 /guides/source/configuring.md
parent1a2e3a0431651a44ab39e0881237c182770e29ed (diff)
downloadrails-4f5d60f4f2110f458e6557a6353974babcb89787.tar.gz
rails-4f5d60f4f2110f458e6557a6353974babcb89787.tar.bz2
rails-4f5d60f4f2110f458e6557a6353974babcb89787.zip
[ci skip] modify the description of production log level default
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 667281d1aa..220946e8d5 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -108,7 +108,7 @@ numbers. New applications filter out passwords by adding the following `config.f
* `config.log_formatter` defines the formatter of the Rails logger. This option defaults to an instance of `ActiveSupport::Logger::SimpleFormatter` for all modes except production, where it defaults to `Logger::Formatter`.
-* `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_level` defines the verbosity of the Rails logger. This option defaults to `:debug` for all environments.
* `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.