我尝试使用记录器流功能附加Morgan
日志。Winston
但是,一旦我尝试附加logger.stream
使用 morgan 中间件时,它就会失败并显示以下消息:
Argument of type '"combined"' is not assignable to parameter of type 'FormatFn'.
这是我的温斯顿初始化代码:
import * as appRoot from 'app-root-path';
import * as winston from 'winston';
import { Logger } from 'winston';
import * as fs from 'fs';
import * as stream from 'stream';
const dirLogs = `${appRoot}/logs`;
// It's call during initialization, we can block the thread
if (!fs.existsSync(dirLogs)) {
fs.mkdirSync(dirLogs);
}
// define the custom settings for each transport (file, console)
const options = {
file: {
level: 'info',
filename: `${dirLogs}/app.log`,
handleExceptions: true,
json: true,
maxsize: 5242880, // 5MB
maxFiles: 5,
colorize: false,
},
console: {
level: 'debug',
handleExceptions: true,
json: false,
colorize: true,
},
};
// Keep it simple to focus on the need first
// I think Logger should send logs to a logger service
const logger = new Logger({
level: 'info',
transports: [
new winston.transports.File(options.file),
new winston.transports.Console(options.console),
],
exitOnError: false, // do not exit on handled exceptions
});
// If I don't use the stream.Duplex, it cause another lint error.
logger.stream = (options?: any) => new stream.Duplex({
write: function (message: string, encoding: any) {
logger.info(message.trim());
}
});
export default logger;
然后,我尝试使用 Morgan 的代码。
// ... All import
import logger from './logger/index';
// ... Then later the code
this.expressApp.use(morgan('combined', { stream: logger.stream }));
我不确定为什么会出现此错误:/