Method: Honeybadger#notify

Defined in:
lib/honeybadger/singleton.rb

#notify(...) ⇒ Object



65
66
67
68
69
# File 'lib/honeybadger/singleton.rb', line 65

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