Files
bamboo/app/middleware/time.js
T
robin 344562baf4 up
2022-04-12 00:51:40 +08:00

11 lines
311 B
JavaScript

'use strict';
/*响应时间*/
module.exports = async (ctx, next, app) => {
// console.log(ctx, next, options);
// const timetaken = `${ctx.request.method}${ctx.request.url} 响应时间`
// console.time(timetaken)
// app.logger.debug("123")
await next()
// console.timeEnd(timetaken)
}