Fixes: set sentry's debug to false to streamline logs

This commit is contained in:
Egor Pavlovich Gorbunov 2025-06-05 16:52:46 +03:00
parent 572e6a7e9c
commit cbdb6fe845

View file

@ -320,7 +320,7 @@ if getenv("SENTRY_DSN"):
RedisIntegration(), RedisIntegration(),
], ],
environment="development" if DEBUG else "production", environment="development" if DEBUG else "production",
debug=DEBUG, debug=False,
release=f"evibes@{EVIBES_VERSION}", release=f"evibes@{EVIBES_VERSION}",
ignore_errors=ignore_errors, ignore_errors=ignore_errors,
) )