aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorrmarone <Ashes42@gmail.com>2016-10-15 09:20:41 -0400
committerEileen M. Uchitelle <eileencodes@users.noreply.github.com>2016-10-15 09:20:41 -0400
commitbe6990bf01f422ab79dcd4c8660a04ecdc5a9a5c (patch)
tree4fbf530237c11ea2509bc7f21ac33e12854b0154 /guides
parent0bf90faddbb24a93f3aced0d904a9be6a29ee987 (diff)
downloadrails-be6990bf01f422ab79dcd4c8660a04ecdc5a9a5c.tar.gz
rails-be6990bf01f422ab79dcd4c8660a04ecdc5a9a5c.tar.bz2
rails-be6990bf01f422ab79dcd4c8660a04ecdc5a9a5c.zip
Pull request for ticket 26769 (#26770)
* Clarify the default behavior of log_formatter Updates language to remove reference to production.rb and fix quoting
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 022886a122..79ded19c27 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -110,7 +110,7 @@ numbers. By default, Rails filters out passwords by adding `Rails.application.co
* `config.force_ssl` forces all requests to be served over HTTPS by using the `ActionDispatch::SSL` middleware, and sets `config.action_mailer.default_url_options` to be `{ protocol: 'https' }`. This can be configured by setting `config.ssl_options` - see the [ActionDispatch::SSL documentation](http://edgeapi.rubyonrails.org/classes/ActionDispatch/SSL.html) for details.
-* `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`. If you are setting a value for `config.logger` you must manually pass the value of your formatter to your logger before it is wrapped in an `ActiveSupport::TaggedLogging` instance, Rails will not do it for you.
+* `config.log_formatter` defines the formatter of the Rails logger. This option defaults to an instance of `ActiveSupport::Logger::SimpleFormatter` for all modes. If you are setting a value for `config.logger` you must manually pass the value of your formatter to your logger before it is wrapped in an `ActiveSupport::TaggedLogging` instance, Rails will not do it for you.
* `config.log_level` defines the verbosity of the Rails logger. This option
defaults to `:debug` for all environments. The available log levels are: `:debug`,