From cbdb6fe845290af8a427b38866dcea8d27cb0720 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Thu, 5 Jun 2025 16:52:46 +0300 Subject: [PATCH] Fixes: set sentry's debug to false to streamline logs --- evibes/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evibes/settings/base.py b/evibes/settings/base.py index 9a611b70..30660f5f 100644 --- a/evibes/settings/base.py +++ b/evibes/settings/base.py @@ -320,7 +320,7 @@ if getenv("SENTRY_DSN"): RedisIntegration(), ], environment="development" if DEBUG else "production", - debug=DEBUG, + debug=False, release=f"evibes@{EVIBES_VERSION}", ignore_errors=ignore_errors, )