我试图在Winston中使用多个传输。这工作...... sorta。我为应用程序的审核日志设置了一个传输,具有自定义级别的审核'以及用于'信息的传输。
var winston_mongo_options = {
level: 'audit', // level that should be logged
safe: true, //makes sure writes happen before firing log event
db: config.db.db, // db in which to write logs
host: config.db.host,
port: config.db.port,
collection: config.db.audit_collection // collection we want logging to occur
};
if (config.db.user) {
winston_mongo_options.username = config.db.user;
winston_mongo_options.password = config.db.pass;
}
var custom_levels = winston.config.syslog.levels;
custom_levels.audit = 8;
var logger = new (winston.Logger)({
levels: custom_levels,
transports : [
new (winston.transports.MongoDB)(winston_mongo_options),
new (winston.transports.File)({
level: 'info',
silent: false,
colorize: true,
timestamp: true,
filename: config.logs.debug,
maxsize: 500000,
maxFiles: 5,
json: true
})
],
exceptionHandlers: [
new (winston.transports.File)({
silent: false,
colorize: false,
timestamp: true,
filename: config.logs.exception,
maxsize: 500000,
maxFiles: 5,
json: true
})
]
});
module.exports.logger = logger;
显然,我需要这个文件在哪里/何时我想进行任何记录。想要将某些信息单独发送到日志时会出现问题。
logger.audit('Server Started - to DB');
logger.info('Server Started - to info');
这两行应写入单独的日志。第一行正确写入数据库和info日志文件。我做错了什么?
答案 0 :(得分:1)
解决:问题是我如何定义级别。我没有意识到Winston日志记录工作的方式,日志将收到所有> =定义的级别。所以我的'info'传输是0级接收发送到'audit'传输的消息,这是8级。我将'audit'设置为0级,并且它停止显示在'info'日志中。然后,我通过为审计数据库日志创建一个全新的记录器找到了更好的解决方案。