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().