diff options
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 572993a36b..3aa21b7772 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -455,6 +455,8 @@ encrypted cookies salt value. Defaults to `'signed encrypted cookie'`. 'ActionDispatch::ParamsParser::ParseError' => :bad_request, 'ActionController::BadRequest' => :bad_request, 'ActionController::ParameterMissing' => :bad_request, + 'Rack::QueryParser::ParameterTypeError' => :bad_request, + 'Rack::QueryParser::InvalidParameterError' => :bad_request, 'ActiveRecord::RecordNotFound' => :not_found, 'ActiveRecord::StaleObjectError' => :conflict, 'ActiveRecord::RecordInvalid' => :unprocessable_entity, @@ -516,6 +518,14 @@ encrypted cookies salt value. Defaults to `'signed encrypted cookie'`. * `config.action_view.debug_missing_translation` determines whether to wrap the missing translations key in a `<span>` tag or not. This defaults to `true`. +* `config.action_view.enable_fragment_cache_logging` determines whether to log fragment cache reads and writes like: + + ``` + Read fragment views/v1/2914079/v1/2914079/recordings/70182313-20160225015037000000/d0bdf2974e1ef6d31685c3b392ad0b74 (0.6ms) + ``` + + Default value is false. + ### Configuring Action Mailer There are a number of settings available on `config.action_mailer`: |