class Hutch::ErrorHandlers::Sentry

Public Class Methods

new() click to toggle source
# File lib/hutch/error_handlers/sentry.rb, line 9
def initialize
  unless Raven.respond_to?(:capture_exception)
    raise "The Hutch Sentry error handler requires Raven >= 0.4.0"
  end
end

Public Instance Methods

handle(message_id, payload, consumer, ex) click to toggle source
# File lib/hutch/error_handlers/sentry.rb, line 15
def handle(message_id, payload, consumer, ex)
  prefix = "message(#{message_id || '-'}): "
  logger.error prefix + "Logging event to Sentry"
  logger.error prefix + "#{ex.class} - #{ex.message}"
  Raven.capture_exception(ex)
end