aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/configuring.textile
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2010-11-27 20:47:35 +1100
committerRyan Bigg <radarlistener@gmail.com>2010-11-29 11:00:16 +1100
commitfbdd72ecae9192c461794e37c76a663112dcaa6e (patch)
treecefaac8be8280065ece31f492a70415abb0aa835 /railties/guides/source/configuring.textile
parent9bd291407c70daac1b2777f552f599a6fff9f387 (diff)
downloadrails-fbdd72ecae9192c461794e37c76a663112dcaa6e.tar.gz
rails-fbdd72ecae9192c461794e37c76a663112dcaa6e.tar.bz2
rails-fbdd72ecae9192c461794e37c76a663112dcaa6e.zip
Mention filter_parameters for config
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index ca78cc0e6d..0ea7a7bb47 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -63,6 +63,8 @@ h4. Rails General Configuration
* +config.eager_load_paths+ accepts an array of paths from which Rails will eager load on boot if cache classes is enabled. All elements of this array must also be in +load_paths+.
+* +config.filter_parameters+ used for filtering out the parameters that you don't want shown in the logs, such as passwords or credit card numbers.
+
* +config.log_level+ defines the verbosity of the Rails logger. In production mode, this defaults to +:info+. In development mode, it defaults to +:debug+.
* +config.log_path+ overrides the path to the log file to use. Defaults to +log/#{environment}.log+ (e.g. log/development.log or log/production.log).