Merge pull request #366 from hennevogel/errbit-filter
Ignore more exceptions. Fixes #351
This commit is contained in:
commit
5870838fc1
1 changed files with 6 additions and 1 deletions
|
|
@ -9,7 +9,12 @@ HoptoadNotifier.configure do |config|
|
||||||
end
|
end
|
||||||
|
|
||||||
config.ignore_only = %w{
|
config.ignore_only = %w{
|
||||||
Some::ExceptionName
|
ActiveRecord::RecordNotFound
|
||||||
|
ActionController::InvalidAuthenticityToken
|
||||||
|
ActionController::UnknownAction
|
||||||
|
AbstractController::ActionNotFound
|
||||||
|
ActionView::MissingTemplate
|
||||||
|
ActionController::UnknownFormat
|
||||||
}
|
}
|
||||||
|
|
||||||
config.ignore_by_filter do |exception_data|
|
config.ignore_by_filter do |exception_data|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue