Integrations¶
Logging¶
-
sentry_sdk.integrations.logging.ignore_logger(name)[source]¶ 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.
- Parameters
name (
str) – The name of the logger to ignore (same string you would pass tologging.getLogger).- Return type
None