Files
RSSHub/middleware/debug.js
2018-05-17 12:22:52 +08:00

11 lines
272 B
JavaScript

module.exports = async (ctx, next) => {
await next();
if (ctx.request.path !== '/') {
ctx.debug.request++;
if (ctx.response.get('X-Koa-Redis-Cache') || ctx.response.get('X-Koa-Memory-Cache')) {
ctx.debug.hitCache++;
}
}
};