Re: logging within celery processes

2013-04-21 Thread Ask Solem
On Sunday, April 21, 2013 5:51:06 AM UTC+1, Mike wrote: > > I'm trying to get logging to work from within my celery process. I have > set: > CELERY_SEND_TASK_ERROR_EMAILS = True > in settings.py > > within the process I am logging to level INFO: > > logger.info('some info') > > I launch the pro

Re: logging within celery processes

2013-04-20 Thread Shawn Milochik
I don't know the solution, but we had the same problem. We ended up dumping Celery in favor of rq. It's much easier to work with and we were already using Redis as a back-end. If you do figure out the solution to this, please post it here. Also, consider rq. We used Celery quite a bit and the chan