aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/configuring.textile
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-01-18 14:05:36 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-01-18 14:30:33 -0300
commit5a6ea535145270751bdf712a6e5c489650765ca7 (patch)
tree1d0d45a226ec2001edf7966435adcd48872d6cf0 /railties/guides/source/configuring.textile
parente1540897101b710f4cf06cbe971ba04e59c4fb71 (diff)
downloadrails-5a6ea535145270751bdf712a6e5c489650765ca7.tar.gz
rails-5a6ea535145270751bdf712a6e5c489650765ca7.tar.bz2
rails-5a6ea535145270751bdf712a6e5c489650765ca7.zip
ActionView now has its own logger
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index fb8031b16d..f70e95c0e9 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -342,7 +342,7 @@ 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.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 View. 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.