I'm using the celery managment command to do some debugging in a django application:

python manage.py celeryd -l info

The output is highilighted in really glaring colors. Is there any way to turn the highlighting off?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

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

link|improve this answer
can also set that via the command line: celeryd -- .log_color=no – asksol Nov 29 '11 at 18:14
feedback

i guess you could pipe it through cat:

python manage.py celeryd -l info |cat
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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