Winston/Node.js 怎么给某条路由添加Transport?

Winston/Node.js how to add a Transport only for a certain routes?

假设我有以下 API 及其各自的路线如下 -

1) /api/v1/teachers - 针对教师的CRUD操作

2) /api/v1/students - 针对同学们的CRUD操作

目前,我将 API 请求的日志存储在 combined.log 文件中。我想将教师的 CRUD 操作日志存储在 teachers.log 文件中,将学生的 CRUD 操作日志存储在 students.log 文件中。

我参考了以下问题,作者想根据特定环境存储特定日志。

const winston = require('winston');
const transports = [
    new winston.transports.Console({
        level    : 'info',
        colorize : true
    }),
    new winston.transports.File({
        level    : 'info',
        filename : './logs/logs.log'
    })
];

if (process.env.NODE_ENV === 'production') {
    const Mail = require('winston-mail').Mail;

    transports.push(new Mail({
        to       : 'xxxxxx@xxxxxx.xx',
        from     : 'winston@xxxxx.xx',
        subject  : 'Errors occurred',
        level    : 'error',
        host     : 'smtp.xxxxx.xx',
        username : 'xxxx@xxxx.xx', 
        password : 'xxxxx',
        port     : 1234
    }));
}
const logger = new winston.Logger({
    transports
});

但是由于我无法在 winston.js 中访问请求对象本身,所以我无法应用基于路由的条件将不同路由的日志存储在不同的文件中。

您可以创建 2 个传输并使用 express-winston 在路由器之前选择指定的传输。

var router = require('./teachers-router');

app.use(expressWinston.logger({
  transports: [
    new winston.transports.teachers, // you will need to create this one by your own
  ],
}));
app.use(router);