Method: Honeybadger#notify

Defined in:
lib/honeybadger/singleton.rb

#notify(...) ⇒ Object



55
56
57
58
59
# File 'lib/honeybadger/singleton.rb', line 55

def notify(exception_or_opts=nil, opts = {}, **kwargs)
  # Note this is defined directly (instead of via forwardable) so that
  # generated stack traces work as expected.
  Agent.instance.notify(exception_or_opts, opts, **kwargs)
end