diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-01-18 14:05:36 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-01-18 14:30:33 -0300 |
commit | 5a6ea535145270751bdf712a6e5c489650765ca7 (patch) | |
tree | 1d0d45a226ec2001edf7966435adcd48872d6cf0 /railties | |
parent | e1540897101b710f4cf06cbe971ba04e59c4fb71 (diff) | |
download | rails-5a6ea535145270751bdf712a6e5c489650765ca7.tar.gz rails-5a6ea535145270751bdf712a6e5c489650765ca7.tar.bz2 rails-5a6ea535145270751bdf712a6e5c489650765ca7.zip |
ActionView now has its own logger
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
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. |