8000
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.
1 parent 223e7a9 commit f897ac5Copy full SHA for f897ac5
sentry_sdk/integrations/logging.py
@@ -27,9 +27,10 @@
27
28
def ignore_logger(name):
29
# type: (str) -> None
30
- """This disables the breadcrumb integration for a logger of a specific
31
- name. This primary use is for some integrations to disable breadcrumbs
32
- of this integration.
+ """This disables recording (both in breadcrumbs and as events) calls to
+ a logger of a specific name. Among other uses, many of our integrations
+ use this to prevent their actions being recorded as breadcrumbs. Exposed
33
+ to users as a way to quiet spammy loggers.
34
"""
35
_IGNORED_LOGGERS.add(name)
36
0 commit comments