We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DedupeIntegration
1 parent 94a92d8 commit a6a2f93Copy full SHA for a6a2f93
sentry_sdk/integrations/dedupe.py
@@ -1,5 +1,5 @@
1
import sentry_sdk
2
-from sentry_sdk.utils import ContextVar
+from sentry_sdk.utils import ContextVar, logger
3
from sentry_sdk.integrations import Integration
4
from sentry_sdk.scope import add_global_event_processor
5
@@ -37,7 +37,9 @@ def processor(event, hint):
37
38
exc = exc_info[1]
39
if integration._last_seen.get(None) is exc:
40
+ logger.info("DedupeIntegration dropped duplicated error event %s", exc)
41
return None
42
+
43
integration._last_seen.set(exc)
44
return event
45
0 commit comments