class Airbrake::FilterChain

def refine(notice)

Returns:
  • (void) -

Parameters:
  • notice (Airbrake::Notice) -- The notice to be filtered
def refine(notice)
  @filters.each do |filter|
    break if notice.ignored?
    filter.call(notice)
  end
end