Now that django-sentry
has become a standalone server (and is fantastic) I'm trying to port my apps over to use it.
I have set up a standalone server configured a django application to log using django 1.3's logging dictionary conf as per the raven docs. I can't seem to get any celery tasks to log to the sentry server (they do get printed out to the console though).
I'm not really sure what I should be doing? I have included raven.contrib.django.celery
in my `INSTALLED_APPS'.
Uncaught exceptions are being sent to sentry, as are custom logging message via:
import logging
logger = logging.getLogger(__name__)
...
logger.info("Logged Message")