3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'lib/rollbar/exception_reporter.rb', line 3
def report_exception_to_rollbar(env, exception)
exception_message = exception.respond_to?(:message) ? exception.message : 'No Exception Message'
Rollbar.log_debug "[Rollbar] Reporting exception: #{exception_message}"
exception_data = Rollbar.log(Rollbar.configuration.uncaught_exception_level, exception, :use_exception_level_filters => true)
if exception_data.is_a?(Hash)
env['rollbar.exception_uuid'] = exception_data[:uuid]
Rollbar.log_debug "[Rollbar] Exception uuid saved in env: #{exception_data[:uuid]}"
elsif exception_data == 'disabled'
Rollbar.log_debug '[Rollbar] Exception not reported because Rollbar is disabled'
elsif exception_data == 'ignored'
Rollbar.log_debug '[Rollbar] Exception not reported because it was ignored'
end
rescue => e
Rollbar.log_warning "[Rollbar] Exception while reporting exception to Rollbar: #{e.message}"
end
|