Closed nZac closed 3 years ago
It's a bit frustrating right now when trying to run the Celery workers locally that you have to do two things to see info messages:
1) set the command line option -l info in /scripts/celery-worker 2) comment out add_handler() in app.celery.worker
-l info
add_handler()
app.celery.worker
Make it easier to see messages locally.
scripts/celery-worker now has KEG_LOG_STREAM_ENABLED=on which results in info log messages going to stdout
scripts/celery-worker
KEG_LOG_STREAM_ENABLED=on
It's a bit frustrating right now when trying to run the Celery workers locally that you have to do two things to see info messages:
1) set the command line option
-l info
in /scripts/celery-worker 2) comment outadd_handler()
inapp.celery.worker
Make it easier to see messages locally.