[Answered ]-Skip celery warnings

2👍

There’s a celery settings with which you can specify the log level of things written to stdout within celery processes. It’s CELERY_REDIRECT_STDOUTS_LEVEL. Use e.g. in your configuration:

CELERY_REDIRECT_STDOUTS_LEVEL = 'INFO'

Take a look at the docs:
http://docs.celeryproject.org/en/2.2/configuration.html

I’m not sure about the second log line, but the first should go away.

👤Nuschk

Leave a comment