Only prints log_data
if LOG_LEVEL
== DEBUG
#228
-
I think that container only needs to print Is there a way to supress that print that am I missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I'm not sure I understand the question 🤔 But anyway, just so you know, now that Uvicorn supports managing workers with Because of that, I deprecated this Docker image: https://github.com/tiangolo/uvicorn-gunicorn-docker#-warning-you-probably-dont-need-this-docker-image And then the configuration will probably be much simpler as well, just dealing with Uvicorn and not with Gunicorn. 😎 |
Beta Was this translation helpful? Give feedback.
I'm not sure I understand the question 🤔
But anyway, just so you know, now that Uvicorn supports managing workers with
--workers
, including restarting dead ones, there's no need for Gunicorn. That also means that it's much simpler to build a Docker image from scratch now, I updated the docs to explain it.Because of that, I deprecated this Docker image: https://github.com/tiangolo/uvicorn-gunicorn-docker#-warning-you-probably-dont-need-this-docker-image
And then the configuration will probably be much simpler as well, just dealing with Uvicorn and not with Gunicorn. 😎