class Sentry::Rails::ErrorSubscriber

def report(error, handled:, severity:, context:, source: nil)

def report(error, handled:, severity:, context:, source: nil)
  tags = { handled: handled }
  if source
    return if SKIP_SOURCES.match?(source)
    tags[:source] = source
  end
  Sentry::Rails.capture_exception(error, level: severity, contexts: { "rails.error" => context }, tags: tags)
end