我有一个用Node编写的程序,我在其中使用Winstonjs进行日志记录。我还有一个exceptionHandler,因此节点异常/错误也会到达我的日志。我现在有一个问题。当我使用node index.js
(而不是pm2)从命令行运行脚本时,脚本在出错时会以静默方式结束。
看看下面的示例代码。我添加了三个console.log()
来尝试记录未定义的变量。当我使用node index.js
运行脚本时,它会根据预期为第一个错误的ReferenceError
提供console.log(undefinedVariable)
。当我现在删除第一个和/或第二个console.log
时,脚本会以静默方式结束。
"use strict";
let winston = require('winston');
const path = require('path');
const PRODUCTION = false;
// LOGGING
const myFormat = winston.format.printf(info => {
return `${info.timestamp} ${info.level}: ${info.message}`;
});
console.log(undefinedVariable); // THIS GIVES A REFERENCE ERROR
const logger = winston.createLogger({
level: 'debug',
format: winston.format.combine(winston.format.timestamp(), myFormat),
transports: [
new winston.transports.File({filename: 'logs/error.log', level: 'error'}),
new winston.transports.File({filename: 'logs/combined.log'}),
],
exceptionHandlers: [
new winston.transports.File({ filename: 'logs/exceptions.log' }),
new winston.transports.File({ filename: 'logs/combined.log' })
]
});
console.log(undefinedVariable); // THIS DOES NOT GIVE A REFERENCE ERROR, BUT ENDS THE SCRIPT SILENTLY
if (!PRODUCTION) {
// If we're not in production then also log to the `console`
logger.add(new winston.transports.Console(
{format: winston.format.combine(winston.format.timestamp(), myFormat), level: 'debug'}
));
}
console.log(undefinedVariable); // THIS ALSO DOES NOT GIVE A REFERENCE ERROR, BUT ENDS THE SCRIPT SILENTLY
function log(message, level='debug'){
// Levels: error, warn, info, verbose, debug, silly
const e = new Error();
const regex = /\((.*):(\d+):(\d+)\)$/
const match = regex.exec(e.stack.split("\n")[2]);
let log_source = path.basename(match[1]) + ':' + match[2]; // eg: index.js:285
if (typeof message === 'object'){
message = JSON.stringify(message);
}
logger[level](log_source + ' - ' + message);
}
我正在运行Winstonjs版本3.0.0-rc5
。我知道它还不是最终的3.0版本,但我想我在这里犯了一个错误。
有人知道我在这里做错了什么吗?欢迎所有提示!
答案 0 :(得分:3)
如果您看到Handling Uncaught Exceptions with winston doc
您可以设置exitOnError = false
默认情况下,winston将在记录uncaughtException后退出。如果这不是您想要的行为,请设置exitOnError = false
并添加到您的传输new winston.transports.Console({ handleExceptions: true })
以便在控制台中显示它。