因此,我尝试从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

最佳答案

与我偏爱的本地风格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}`
    }
  )
)


结果:

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

关于javascript - 将Winston Logger从2.4.4迁移到3.x…新的传输方式让我迷失了,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52992042/

10-09 21:30