将Winston Logger从2.4.4迁移到3.x ...新的传输方式让我迷失了

时间:2018-10-25 14:42:07

标签: javascript node.js logging winston

因此,我尝试从Winston 2.x迁移到3.x,但是它在设置传输方式方面发生了相当大的变化,我似乎无法像以前那样进行设置,就此而言,更不用说对其进行改进了。 我想要在控制台中

[human-readable-date] [level(colourised)] : [text string], [formatted JSON]

在2.4版本中,我让它以未格式化的格式打印出JSON,这足够了,但是改进总是不错的。

这是我的旧配置文件

const winston = require("winston");
require("winston-mongodb");
const config = require("./mongoDb").config;
const url = config.URL;

const tsFormat = () =>
  `${new Date().toLocaleDateString()} ${new Date().toLocaleTimeString()}`;

const logger = new winston.Logger({
  transports: [
    new winston.transports.Console({
      timestamp: tsFormat,
      colorize: true
    }),
    new winston.transports.MongoDB({
      timestamp: tsFormat,
      db: url,
      level: "debug",
      autoReconnect: true
    })
  ]
});
module.exports = logger;

-编辑-

这是我目前所在的地方

const winston = require("winston");
require("winston-mongodb");
const config = require("./");
const mongo = require("./mongo");

const logger = winston.createLogger({
  transports: [
    new winston.transports.Console({
      format: winston.format.combine(
        winston.format.colorize(),
        winston.format.timestamp({
          format: "YYYY-MM-DD HH:mm:ss"
        }),
        winston.format.align(),
        winston.format.printf(
          info => `${info.timestamp} ${info.level}: ${info.message}`
        )
      )
    }),

    new winston.transports.MongoDB({
      db: `${config.mongoURI}/${config.mongodb}`,
      level: "debug",
      tryReconnect: true,
      storeHost: true
    })
  ]
});
module.exports = logger;

但是我根本无法获得所需的JSON部分,也无法将其发送到mongodb

1 个答案:

答案 0 :(得分:1)

与我偏爱的本地风格pino-pretty获得了相似的结果。

能够打印出错误堆栈和其他元数据对象。

代码:

  

我为命名空间添加了一个附加的自定义字段,因为我的应用为每个文件创建了一个子记录器,而不是使用logger.child({ label: namespace })公开“根”记录器

winston.format.combine(
  winston.format.timestamp({ format: 'YYYY-MM-DD HH:mm:ss' }),
  winston.format.errors({ stack: true }),
  winston.format.colorize(),
  winston.format.printf(
    ({ timestamp, level, label, message, stack, ...rest }) => {
      const namespace = label ? `(${label})` : ''
      const errStack = stack ? `\n${stack}` : ''
      const meta =
        rest && Object.keys(rest).length
          ? `\n${JSON.stringify(rest, undefined, 2)}`
          : ''
      return `[${timestamp}] ${level}: ${namespace} ${message} ${meta} ${errStack}`
    }
  )
)

结果:

enter image description here