Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need help asap. My company just asked me to implement celery in the system that I am in charge of right now, and in the previous version of the system, it already used python standard logging.

My code is similar the code below. The process one and process two is non celery function, and inside, there are logging everywhere. We are using the logging to track data loss if something bad happen.

@task
def add(x,y):
    process_one(x,y)
    process_two(x,y)

How to implement celery and use the python standard logging instead the celery logging, so our old logging system is not lost?

I have tried to change: "import logging" from python to: "logger = add.get_logger()" and bypass the "logger" to all function, but I don't think it is a good practice. I need another solution.

Please help me solve the problem. Thank you.

Hi guys, just an update to my old question: to add application logging in celery logging, you can perform:

manage.py celeryd -v 2 -B -s celery -E -l debug --traceback --settings=settings --logfile=/(path to your log folder)/celeryd.log

with -l (logging) as "debug", our application/python logging is automatically include in our celery logging. No need to perform logger = add.get_logger().

share|improve this question

1 Answer

You probably want this setting:

CELERYD_HIJACK_ROOT_LOGGER = False

Tell me how that works out.

Btw, the reason it hijacks the root logger is because some badly written libraries sets up logging, something a library should never do, resulting in users experiencing no output from the celeryd worker :(

share|improve this answer
Hi Asksol, thank you for your answer. Ya I'm agree with you about the bad library thing. I already tried the CELERYD_HIJACK_ROOT_LOGGER thing. When I consult to my friend, he told me that is not wise to make CELERYD_HIJACK_ROOT_LOGGER = False because celeryd worker logging is very important and more powerful. The output is, celery only redirect the log responsibility from celery logger to root/python logger and the result is the same. I think if it happen like that, I prefer for using celery logger instead the python one. – cactuarz Aug 5 '11 at 2:22
So the celery library sets up logging because badly written libraries set up logging? ;) Sounds like a 'you look like trouble, so I better shoot you first' argument. – hheimbuerger Apr 19 at 13:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.