Skip to content

Commit

Permalink
Reorder logger and middleware global config options
Browse files Browse the repository at this point in the history
  • Loading branch information
radar committed Nov 29, 2010
1 parent 245ce77 commit b9fde2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions railties/guides/source/configuring.textile
Expand Up @@ -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!+.
Expand Down

0 comments on commit b9fde2f

Please sign in to comment.