Method: GdsApi::BaseError#sentry_context
- Defined in:
- lib/gds_api/exceptions.rb
#sentry_context ⇒ Object
Give Sentry extra context about this event docs.sentry.io/clients/ruby/context/
6 7 8 9 10 11 12 13 |
# File 'lib/gds_api/exceptions.rb', line 6 def sentry_context { # Make Sentry group exceptions by type instead of message, so all # exceptions like `GdsApi::TimedOutException` will get grouped as one # error and not an error per URL. fingerprint: [self.class.name], } end |