How to turn off the backlight in celery?

I use the celery management command to do some debugging in a django application:

python manage.py celeryd -l info 

The output is brightly lit in truly vibrant colors. Is there a way to turn off selection?

+4
source share
2 answers

You can customize or disable the color using CELERYD_LOG_COLOR http://celery.readthedocs.org/en/latest/configuration.html#celeryd-log-color

+3
source

I think you could pass it through cat :

 python manage.py celeryd -l info |cat 
0
source

Source: https://habr.com/ru/post/1383504/


All Articles