Update {{cookiecutter.project_slug}}/config/settings/production.py

Co-Authored-By: Bruno Alla <browniebroke@users.noreply.github.com>
This commit is contained in:
Demetris Stavrou 2019-05-22 09:46:20 +03:00 committed by GitHub
parent 7cc94c139c
commit a636d454f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -288,7 +288,7 @@ SENTRY_LOG_LEVEL = env.int("DJANGO_SENTRY_LOG_LEVEL", logging.INFO)
sentry_logging = LoggingIntegration(
level=SENTRY_LOG_LEVEL, # Capture info and above as breadcrumbs
event_level=logging.ERROR # Send errors as events
event_level=logging.ERROR, # Send errors as events
)
{%- if cookiecutter.use_celery == 'y' %}