Sha256: b53f7b82ad06200aca4be50548d34ee2cebaf94b9f287805ce92a4a48a3603bc

Contents?: true

Size: 1.41 KB

Versions: 2

Compression:

Stored size: 1.41 KB

Contents

module Rollbar
  module ExceptionReporter # :nodoc:
    def report_exception_to_rollbar(env, exception)
      return unless capture_uncaught?

      log_exception_message(exception)

      exception_data = exception_data(exception)

      case exception_data
      when Hash
        env['rollbar.exception_uuid'] = exception_data[:uuid]
        Rollbar.log_debug(
          "[Rollbar] Exception uuid saved in env: #{exception_data[:uuid]}"
        )
      when 'disabled'
        Rollbar.log_debug(
          '[Rollbar] Exception not reported because Rollbar is disabled'
        )
      when 'ignored'
        Rollbar.log_debug '[Rollbar] Exception not reported because it was ignored'
      end
    rescue StandardError => e
      Rollbar.log_warning(
        "[Rollbar] Exception while reporting exception to Rollbar: #{e.message}"
      )
    end

    def capture_uncaught?
      Rollbar.configuration.capture_uncaught != false &&
        !Rollbar.configuration.enable_rails_error_subscriber
    end

    def log_exception_message(exception)
      exception_message = exception.message if exception.respond_to?(:message)
      exception_message ||= 'No Exception Message'
      Rollbar.log_debug "[Rollbar] Reporting exception: #{exception_message}"
    end

    def exception_data(exception)
      Rollbar.log(Rollbar.configuration.uncaught_exception_level, exception,
                  :use_exception_level_filters => true)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rollbar-3.6.1 lib/rollbar/exception_reporter.rb
rollbar-3.6.0 lib/rollbar/exception_reporter.rb