使用 Rollbar gem,我收到了很多消耗我的事件积分的警告,我可以将它们排除在报告之外吗?
问问题
539 次
1 回答
3
是的:在您的滚动条配置中,添加它们,例如:
Rollbar.configure do |config|
config.exception_level_filters.merge!({
'ActionController::RoutingError' => 'ignore',
})
end
https://github.com/rollbar/rollbar-gem#exception-level-filters
于 2018-03-29T03:56:24.103 回答