如何在NodeJs中使用Winston?

时间:2018-11-10 20:58:00

标签: node.js winston

我正在尝试创建一个示例nodeJs程序,以使用和理解nodeJs的winston库,
我从一个现有项目中获得了示例代码,而我正在尝试创建示例代码示例,
该代码包含winston配置和一个简单的测试功能,可以使用不同的日志级别打印日志。
我使用的是节点版本4.6.2,我知道它已经很旧了,但是现有的应用程序正在使用相同的版本,因此我想了解相同版本的实现,
该示例包含以下代码和一个日志文件夹,我希望在其中打印日志。

以下是我尝试运行的示例代码-

var winston = require('winston');
var envData = require('dotenv').config({path: 'server.env'})
require('winston-daily-rotate-file');

var levelLog = 'debug';
var winstonTransports = [];

const logDTFormat = () => (new Date().toFormat('DD MMM YYYY HH24:MI:SS'));

// Winston Rotate File Logs
var transportDailyRotate = new (winston.transports.DailyRotateFile)({
    filename: './logs/hrfid_app_',
    datePattern: 'yyyy-MM-dd.log',
    prepend: false,
    level: levelLog,
    timestamp: function() {
    var dateTime = new Date(Date.now());
        return dateTime.toFormat('DD/MM/YYYY HH24:MI:SS');
    }
});

winstonTransports.push(transportDailyRotate);

// Winston Console Log 
var trasportConsole = new (winston.transports.Console)({
    timestamp: logDTFormat,
    colorize: true,
    level: levelLog
});

winstonTransports.push(trasportConsole);

// Winston Config
winston.configure({
    level: levelLog,
    transports: winstonTransports
});

const logger = winston.createLogger({
    level: 'info',
    format: winston.format.json(),
    transports: [
      //
      // - Write to all logs with level `info` and below to `combined.log` 
      // - Write all logs error (and below) to `error.log`.
      //
      new winston.transports.File({ filename: 'error.log', level: 'error' }),
      new winston.transports.File({ filename: 'combined.log' })
    ]
  });

  //
  // If we're not in production then log to the `console` with the format:
  // `${info.level}: ${info.message} JSON.stringify({ ...rest }) `
  // 
  if (process.env.NODE_ENV !== 'production') {
    logger.add(new winston.transports.Console({
      format: winston.format.simple()
    }));
  }

// Validate Server Configuration
if (envData.error) {
    winston.error('[APP-CONFIG]:', JSON.stringify(envData.error))
    winston.error('[APP-CONFIG]:', 'Error on Server Configuration')
    return
}

var test = function(){
  winston.error("ERROR log");
  winston.info("INFO log");
  winston.debug("DEBUG log");
}
test();

我遇到以下错误,
有人可以帮助修复我的示例代码吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

升级到节点6或8。

最新的winston至少需要节点6.4

https://github.com/winstonjs/winston/blob/c42ab7fdc51b88db180a7dd90c52ce04ddd4e054/package.json#L69

或者通过删除现有版本的Winston使用旧版本的Winston并执行npm install winston@2.4.4