mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 11:36:44 +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…
x
Reference in New Issue
Block a user