Class: BugBot::Adapters::Airbrake

Inherits:
BugBot::Adapter show all
Defined in:
lib/bug_bot/adapters/airbrake.rb

Instance Method Summary collapse

Methods inherited from BugBot::Adapter

notify

Instance Method Details

#notify(exception, options = {}) ⇒ Object



7
8
9
10
11
# File 'lib/bug_bot/adapters/airbrake.rb', line 7

def notify(exception, options = {})
  ::Airbrake.notify(exception) do |report|
    report[:params].merge!(options)
  end
end