Removed (outdated?) config.action_view.logger from configuration guide.

This commit is contained in:
Victor Costan
2012-02-19 03:58:52 -05:00
parent b2e9bbdcff
commit 64fa7f7258

View File

@@ -337,7 +337,7 @@ h4. Configuring Action Dispatch
h4. Configuring Action View
There are only a few configuration options for Action View, starting with four on +ActionView::Base+:
There are only a few configuration options for Action View, starting with three on +ActionView::Base+:
* +config.action_view.field_error_proc+ provides an HTML generator for displaying errors that come from Active Record. The default is
@@ -347,8 +347,6 @@ Proc.new { |html_tag, instance| %Q(<div class="field_with_errors">#{html_tag}</d
* +config.action_view.default_form_builder+ tells Rails which form builder to use by default. The default is +ActionView::Helpers::FormBuilder+.
* +config.action_view.logger+ accepts a logger conforming to the interface of Log4r or the default Ruby Logger class, which is then used to log information from Action Mailer. Set to +nil+ to disable logging.
* +config.action_view.erb_trim_mode+ gives the trim mode to be used by ERB. It defaults to +'-'+. See the "ERB documentation":http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/ for more information.
* +config.action_view.javascript_expansions+ is a hash containing expansions that can be used for the JavaScript include tag. By default, this is defined as: