guvicorn-logger

Colored, normalizes and joins logs between Uvicorn and Gunicorn.


Keywords
gunicorn, uvicorn, logs, logging
License
MIT
Install
pip install guvicorn-logger==0.1.14

Documentation

Guvicorn_logger

This lib colored, normalizes and joins logs between Uvicorn and Gunicorn. There is a common problem when using Uvicorn for Dev and Gunicorn for Prod, normally the logs generated by Uvicorn wokers are not captured by Gunicorn.

This lib facilitates this configuration...

Easy config

from guvicorn_logger import Logger

logger = Logger().configure()

Example

logger.info("Message - Info")
logger.error("Message - Error")
logger.warning("Message - Warning")
logger.critical("Message - Critical")

Output

  • Framework (Uvicorn, Gunicorn, Fastapi) alt text

FastAPI | asgi-correlation-id

from asgi_correlation_id import CorrelationIdMiddleware
from fastapi import FastAPI

from guvicorn_logger import Logger

app = FastAPI()


app.add_middleware(CorrelationIdMiddleware)


logger = Logger(correlation_id=True).configure()


@app.get("/")
def main():
    logger.info("Message - Info")
    logger.error("Message - Error")
    logger.warning("Message - Warning")
    logger.critical("Message - Critical")

Output

alt text