diff --git a/config/settings/deployment.py b/config/settings/deployment.py index e0fec0187f..6667a583ea 100644 --- a/config/settings/deployment.py +++ b/config/settings/deployment.py @@ -103,7 +103,9 @@ traces_sample_rate=env.float("SENTRY_TRACES_SAMPLE_RATE", default=0), profiles_sample_rate=env.float("SENTRY_PROFILES_SAMPLE_RATE", default=0), integrations=[ - LoggingIntegration(event_level=logging.WARNING), + LoggingIntegration( + event_level=env.int("SENTRY_EVENT_LEVEL", default=logging.ERROR) + ), DjangoIntegration(), CeleryIntegration(monitor_beat_tasks=True), RedisIntegration(),