diff --git a/sentry_sdk/integrations/logging.py b/sentry_sdk/integrations/logging.py index 34e7c35e2c..5b8a934e6d 100644 --- a/sentry_sdk/integrations/logging.py +++ b/sentry_sdk/integrations/logging.py @@ -27,9 +27,10 @@ def ignore_logger(name): # type: (str) -> None - """This disables the breadcrumb integration for a logger of a specific - name. This primary use is for some integrations to disable breadcrumbs - 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 + to users as a way to quiet spammy loggers. """ _IGNORED_LOGGERS.add(name)