Method: Honeybadger#notify

Defined in:
lib/honeybadger/singleton.rb

#notify(...) ⇒ Object


63
64
65
66
67
# File 'lib/honeybadger/singleton.rb', line 63

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