File size: 237 Bytes
6ccc851
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import logging
from aiohttp import web

@web.middleware
async def logging_middleware(request, handler):
    """Log each request."""
    logging.info(f"Incoming request: {request.method} {request.path}")
    return await handler(request)