asgi-logger
asgi-logger copied to clipboard
Access logger for ASGI servers! :tada:
Bumps [httpx](https://github.com/encode/httpx) from 0.20.0 to 0.23.3. Release notes Sourced from httpx's releases. Version 0.23.3 0.23.3 (4th Jan, 2023) Fixed Version 0.23.2 accidentally included stricter type checking on query parameters. This...
I use asgi-logger to monitor response times and sadly when you use [Background Tasks](https://www.starlette.io/background/), their execution time is included in the response time, though they are executed after the request...
Bumps [anyio](https://github.com/agronholm/anyio) from 3.3.4 to 3.6.2. Changelog Sourced from anyio's changelog. Version history This library adheres to Semantic Versioning 2.0 <http://semver.org/>_. 3.6.2 Pinned Trio to < 0.22 to avoid incompatibility...
@Kludex are there any major reasons this couldn't support Python 3.7? As far as I can tell, there are only a couple of minor issues, e.g. `from __future__ import annotations`...
I have the following minimal ASGI application : ```python import logging from asgi_logger import AccessLoggerMiddleware from starlette.applications import Starlette from starlette.middleware import Middleware app = Starlette( middleware=[ Middleware( AccessLoggerMiddleware, format="%(s)s",...