码迷,mamicode.com
首页 > Web开发 > 详细

Nodejs-log4js使用配置

时间:2017-04-08 22:29:45      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:.config   end   eve   clu   file   att   levels   replace   参数   

 

1.log4js配置如下:

log4js.configure({
        appenders     : [
            {
                type: ‘console‘
            },
            {
                category            : ‘console‘,
                type                : ‘dateFile‘,
                filename            : ‘‘,
                pattern             : ‘logs/yyyy-MM/dd.log‘,
                alwaysIncludePattern: true
            }
        ],
        replaceConsole: true,
        levels        : {
            console: "all"
        }
});

2.让console跟随log4js

type:‘console‘

3.文件分割

主要参数:

type : ‘dateFile‘,  日期文件分割类型

pattern : ‘logs/yyyy-MM/dd.log‘, 文件分割名称

alwaysIncludePattern: true 注意:此处一定要设置.否则无效

Nodejs-log4js使用配置

标签:.config   end   eve   clu   file   att   levels   replace   参数   

原文地址:http://www.cnblogs.com/huizong/p/6683161.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!