2020-05-30 19:34:07 +01:00

9 lines
170 B
JavaScript

module.exports = logger;
function logger() {
return async (ctx, next) => {
console.log("Request received:", ctx.req.method, ctx.req.url);
await next();
};
}