I recently started playing with FastAPI and HTTPX, and I am deploying my app with Gunicorn and Uvicorn workers. But when serving, the logs from each component looks quite different from the others. I want them to all look the same, so I can easily read them or exploit them in something like Kibana. After a lot of hours trying to understand how Python logging works, and how to override libraries' l

