有没有办法排除要在Rollbar for Ruby中报告的警告?

时间:2018-03-28 16:58:20

标签: ruby-on-rails warnings rollbar

使用Rollbar gem我收到很多消耗我的活动积分的警告,我可以将它们排除在报告之外吗?

1 个答案:

答案 0 :(得分:2)

是:在您的rollbar配置中,添加它们,例如:

Rollbar.configure do |config|

  config.exception_level_filters.merge!({
    'ActionController::RoutingError' => 'ignore',
  })

end

https://github.com/rollbar/rollbar-gem#exception-level-filters