Fixes: set sentry's debug to false to streamline logs
This commit is contained in:
parent
572e6a7e9c
commit
cbdb6fe845
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue