Skip to content

Commit f897ac5

Browse files
lobsterkatieuntitaker
authored andcommitted
fix docstring (getsentry#400)
1 parent 223e7a9 commit f897ac5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

sentry_sdk/integrations/logging.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@
2727

2828
def ignore_logger(name):
2929
# 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.
30+
"""This disables recording (both in breadcrumbs and as events) calls to
31+
a logger of a specific name. Among other uses, many of our integrations
32+
use this to prevent their actions being recorded as breadcrumbs. Exposed
33+
to users as a way to quiet spammy loggers.
3334
"""
3435
_IGNORED_LOGGERS.add(name)
3536

0 commit comments

Comments
 (0)