(self, app: ASGIApp, logger: Log)
| 13 | |
| 14 | class LoggingRequest(BaseHTTPMiddleware): |
| 15 | def __init__(self, app: ASGIApp, logger: Log) -> None: |
| 16 | super().__init__(app) |
| 17 | self.logger = logger |
| 18 | |
| 19 | async def dispatch(self, request: Request, call_next: Callable) -> Response: |
| 20 | start_time = time.time() |
nothing calls this directly
no outgoing calls
no test coverage detected