From 7622388c4b0ae9bce45df076248feffa37d932e5 Mon Sep 17 00:00:00 2001 From: Katie Byers Date: Mon, 24 Jun 2019 12:58:49 -0700 Subject: [PATCH] fix docstring --- sentry_sdk/integrations/logging.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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)