使用Winston Node js库未创建任何日志文件

时间:2018-07-26 18:58:37

标签: javascript node.js logging npm winston

我正在使用Node js,并使用Winston库进行日志记录。以下代码不会创建日志文件。

var winston = require('winston');


var logger = winston.createLogger({
    transports: [
        new winston.transports.File({
            level: 'info',
            filename: './logs/all-logs.log',
            handleExceptions: true,
            json: true,
            maxsize: 5242880, //5MB
            maxFiles: 5,
            colorize: false
        }),
        new winston.transports.Console({
            level: 'debug',
            handleExceptions: true,
            json: false,
            colorize: true
        })
    ],
    exitOnError: false
});

module.exports = logger;
module.exports.stream = {
    write: function(message, encoding){
        logger.info(message);
    }
};

logger.info(“ hello world”);

它可以很好地登录到终端

 {"message":"hello world","level":"info"}

目录结构是这样的

-test.js
-winston.js
-log

1 个答案:

答案 0 :(得分:2)

在这里,您应该使用Winston:

下面的代码在/log/目录中创建日志文件。


首先,使用以下命令安装 winston-daily-rotate-file,fs和winston

npm i winston-daily-rotate-file fs winston

创建名称为 winston.js

的文件
const fs = require("fs");
const winston = require("winston");
const logDir = "log";

if (!fs.existsSync(logDir)) {
    fs.mkdirSync(logDir);
}

const tsFormat = () => (new Date()).toLocaleTimeString();
module.exports = logger = winston.createLogger({
    transports: [
        new (winston.transports.Console)({
            format: winston.format.combine(
                winston.format.colorize(),
                winston.format.timestamp(),
                winston.format.align(),
                winston.format.simple(),
            ),
            level: 'info'
        }),
        new (require("winston-daily-rotate-file"))({
            filename: `${logDir}/-results.log`,
            format: winston.format.combine(
                winston.format.timestamp(),
                winston.format.json(),
            )
        }),
        new winston.transports.File({ 
            filename: 'log/error.log', 
            level: 'error',
            format: winston.format.combine(
                winston.format.timestamp(),
                winston.format.simple(),
            )
        }),
    ]
});

现在您要做的就是导入记录器并使用它。下面是示例。

现在在同一目录中,创建一个新文件 test.js 并添加以下代码:

const logger = require("./winston.js");

logger.info(`Test info Log!`);
logger.error(`Test error Log!`);

现在使用运行

node test.js

希望这就是您想要的。