docs/config.rst in sentry-raven-2.5.3 vs docs/config.rst in sentry-raven-2.6.0
- old
+ new
@@ -80,16 +80,16 @@
In the example below, the exceptions Rails uses to generate 404 responses will be suppressed.
.. code-block:: ruby
- config.excluded_exceptions = ['ActionController::RoutingError', 'ActiveRecord::RecordNotFound']
+ config.excluded_exceptions += ['ActionController::RoutingError', 'ActiveRecord::RecordNotFound']
- You can find the list of exceptions that are excluded by default in ``Raven::Configuration::IGNORE_DEFAULT``. Remember you'll be overriding those defaults by setting this configuration.
+ You can find the list of exceptions that are excluded by default in ``Raven::Configuration::IGNORE_DEFAULT``. It is suggested that you append to these defaults rather than overwrite them with ``=``.
.. describe:: logger
- The name of the logger used by Sentry. Default is an instance of Raven::Logger.
+ The logger used by Sentry. Default is an instance of Raven::Logger.
.. code-block:: ruby
config.logger = Raven::Logger.new(STDOUT)