Winston javascript 记录器正在创建两个单独的日志文件。如何将所有条目记录到一个文件中?
Winston javascript logger is creating two separate log files. How do I log all entries into a single file?
我正在尝试使用 Winston and winston-daily-rotate-file 将来自 node.js 服务器的所有 console/log 输出记录到一个文件中,该文件(希望)每天午夜轮换。
我遇到的问题是未处理的异常似乎会生成一个新的日志文件,而不是写入现有的日志文件。有关复制行为,请参见下面的示例代码。 如何将所有输出保存到单个日志文件以及输出到控制台?目前,控制台方面似乎没问题,但请随时指出任何问题很明显我不见了。
- OS: 赢 10
- 节点:v12.16.0
- npm: v6.13.4
- 温斯顿:v3.2.1
- winston-daily-rotate-file: v4.4.2
const winston = require('winston');
const DailyRotateFile = require('winston-daily-rotate-file');
const path = require('path');
var logger = new (winston.createLogger)({
transports: [
new (winston.transports.Console)({
format: winston.format.combine(
winston.format.timestamp(),
winston.format.colorize({ all: true }),
winston.format.printf((info) => {
const {
timestamp, level, message
} = info;
return `${timestamp} - ${level}: ${message}`;
}),
),
handleExceptions: true
}),
new DailyRotateFile({
name: 'file',
datePattern: 'YYYY-MM-DDTHH-mm-ss',
handleExceptions: true,
format: winston.format.combine(
winston.format.timestamp(),
winston.format.printf((info) => {
const {
timestamp, level, message
} = info;
return `${timestamp} - ${level}: ${message}`;
}),
),
filename: path.join(__dirname, 'logs', '%DATE%.log')
}),
]
});
logger.info("This is an info message");
logger.error("This is an error message");
setTimeout(() => {throw new Error('oh dear!')}, 5000);
我的问题是由 datePattern 选项引起的。 winston-daily-rotate-file 使用此模式来确定文件轮换的频率。因为我在模式中包含了秒,所以它正在寻找具有当前时间戳(精确到秒)的文件并在写入文件之前创建它。
要获取每日文件,我只需要更改
datePattern: 'YYYY-MM-DDTHH-mm-ss'
至
datePattern: 'YYYY-MM-DD'
我正在尝试使用 Winston and winston-daily-rotate-file 将来自 node.js 服务器的所有 console/log 输出记录到一个文件中,该文件(希望)每天午夜轮换。
我遇到的问题是未处理的异常似乎会生成一个新的日志文件,而不是写入现有的日志文件。有关复制行为,请参见下面的示例代码。 如何将所有输出保存到单个日志文件以及输出到控制台?目前,控制台方面似乎没问题,但请随时指出任何问题很明显我不见了。
- OS: 赢 10
- 节点:v12.16.0
- npm: v6.13.4
- 温斯顿:v3.2.1
- winston-daily-rotate-file: v4.4.2
const winston = require('winston');
const DailyRotateFile = require('winston-daily-rotate-file');
const path = require('path');
var logger = new (winston.createLogger)({
transports: [
new (winston.transports.Console)({
format: winston.format.combine(
winston.format.timestamp(),
winston.format.colorize({ all: true }),
winston.format.printf((info) => {
const {
timestamp, level, message
} = info;
return `${timestamp} - ${level}: ${message}`;
}),
),
handleExceptions: true
}),
new DailyRotateFile({
name: 'file',
datePattern: 'YYYY-MM-DDTHH-mm-ss',
handleExceptions: true,
format: winston.format.combine(
winston.format.timestamp(),
winston.format.printf((info) => {
const {
timestamp, level, message
} = info;
return `${timestamp} - ${level}: ${message}`;
}),
),
filename: path.join(__dirname, 'logs', '%DATE%.log')
}),
]
});
logger.info("This is an info message");
logger.error("This is an error message");
setTimeout(() => {throw new Error('oh dear!')}, 5000);
我的问题是由 datePattern 选项引起的。 winston-daily-rotate-file 使用此模式来确定文件轮换的频率。因为我在模式中包含了秒,所以它正在寻找具有当前时间戳(精确到秒)的文件并在写入文件之前创建它。
要获取每日文件,我只需要更改
datePattern: 'YYYY-MM-DDTHH-mm-ss'
至
datePattern: 'YYYY-MM-DD'