mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-07-11 00:22:29 +03:00
added raven logging for celery
This commit is contained in:
parent
23877e908a
commit
91f223d7bd
|
@ -2,6 +2,10 @@
|
||||||
All enhancements and patches to cookiecutter-django will be documented in this file.
|
All enhancements and patches to cookiecutter-django will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [2015-12-21]
|
||||||
|
### Changed
|
||||||
|
- Added sentry logger to celery config (@jayfk)
|
||||||
|
|
||||||
## [2015-12-16]
|
## [2015-12-16]
|
||||||
- Update preview 4xx error pages to accept `exception` argument (@theskumar)
|
- Update preview 4xx error pages to accept `exception` argument (@theskumar)
|
||||||
|
|
||||||
|
|
|
@ -29,11 +29,13 @@ class CeleryConfig(AppConfig):
|
||||||
# Celery signal registration
|
# Celery signal registration
|
||||||
from raven import Client as RavenClient
|
from raven import Client as RavenClient
|
||||||
from raven.contrib.celery import register_signal as raven_register_signal
|
from raven.contrib.celery import register_signal as raven_register_signal
|
||||||
|
from raven.contrib.celery import register_logger_signal as raven_register_logger_signal
|
||||||
|
|
||||||
raven_client = RavenClient(dsn=settings.RAVEN_CONFIG['DSN'])
|
raven_client = RavenClient(dsn=settings.RAVEN_CONFIG['DSN'])
|
||||||
|
raven_register_logger_signal(raven_client)
|
||||||
raven_register_signal(raven_client)
|
raven_register_signal(raven_client)
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
{% if cookiecutter.use_opbeat == "y" -%}
|
{% if cookiecutter.use_opbeat == "y" -%}
|
||||||
if hasattr(settings, 'OPBEAT'):
|
if hasattr(settings, 'OPBEAT'):
|
||||||
from opbeat.contrib.django.models import client as opbeat_client
|
from opbeat.contrib.django.models import client as opbeat_client
|
||||||
|
|
Loading…
Reference in New Issue
Block a user