mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Don't log to sentry in debug mode (#4576)
This commit is contained in:
parent
78c6f9b90a
commit
1ddc86d6a3
@ -61,7 +61,7 @@ def exception_handler(exc, context):
|
||||
"""
|
||||
response = None
|
||||
|
||||
if settings.SENTRY_ENABLED and settings.SENTRY_DSN:
|
||||
if settings.SENTRY_ENABLED and settings.SENTRY_DSN and not settings.DEBUG:
|
||||
# Report this exception to sentry.io
|
||||
from sentry_sdk import capture_exception
|
||||
capture_exception(exc)
|
||||
|
Loading…
Reference in New Issue
Block a user