diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 13:11:53 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 13:11:53 +1100 |
commit | b9fde2fb757ffdc19bfdf170f20bdfbd10b487f9 (patch) | |
tree | 2f23f8f27ae91a5486c3e7af498b3636caa0503c /railties/guides/source/configuring.textile | |
parent | 245ce774bf4e428bb608d0d880f711c3c4153821 (diff) | |
download | rails-b9fde2fb757ffdc19bfdf170f20bdfbd10b487f9.tar.gz rails-b9fde2fb757ffdc19bfdf170f20bdfbd10b487f9.tar.bz2 rails-b9fde2fb757ffdc19bfdf170f20bdfbd10b487f9.zip |
Reorder logger and middleware global config options
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r-- | railties/guides/source/configuring.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 05afc4f7ea..9c3e0c38a8 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -85,10 +85,10 @@ h4. Rails General Configuration * +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). -* +config.middleware+ allows you to configure the application's middleware. This is covered in depth in the "Configuring Middleware" section below. - * +config.logger+ accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class, which is then used to log information from Action Controller. Set to nil to disable logging. +* +config.middleware+ allows you to configure the application's middleware. This is covered in depth in the "Configuring Middleware" section below. + * +config.plugins+ accepts the list of plugins to load. If this is set to nil, all plugins will be loaded. If this is set to [], no plugins will be loaded. Otherwise, plugins will be loaded in the order specified. * +config.preload_frameworks+ enables or disables preloading all frameworks at startup. Can also be enabled with +threadsafe!+. |