File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
src/asphalt/exceptions/reporters Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,13 @@ class SentryExceptionReporter(ExceptionReporter):
24
24
25
25
* environment: "development" or "production", depending on the ``__debug__`` flag
26
26
27
+ Integrations can be added via the ``integrations`` option which is a list where each item is
28
+ either an object that implements the :class:`sentry_sdk.integrations.Integration` interface,
29
+ or a dictionary where the ``type`` key is a module:varname reference to a class implementing
30
+ the aforementioned interface. The ``args`` key, when present, should be a sequence that is
31
+ passed to the integration as positional arguments, while the ``kwargs`` key, when present,
32
+ should be a mapping of keyword arguments to their values.
33
+
27
34
The extras passed to this backend are passed to :func:`sentry_sdk.capture_exception` as keyword
28
35
arguments.
29
36
You can’t perform that action at this time.
0 commit comments