您的位置:首页技术文章
文章详情页

node.js - node中使用log4js问题

浏览:47日期:2024-07-26 09:02:42

问题描述

本地电脑是windows,部署运行都是没问题的,把今天的日志文件删除了,也会再生成一个。但现在放到了linux服务器上,删掉了之后就没有生成新的。通过node看运行,也显示有log执行,node.js - node中使用log4js问题

真是不知道问题在哪里了,还望大家多多指教

代码如下:

var log4js = require(’log4js’);log4js.configure({ appenders: [{ type: ’console’, category: 'console'}, //控制台输出{ type: 'dateFile', filename:’./../logs/data.log’, maxLogSize: 1024, pattern: '_yyyy-MM-dd', alwaysIncludePattern: true}//日期文件格式 ], replaceConsole: true, levels:{dateFileLog: ’trace’ }});var dateFileLog = log4js.getLogger(’data’);exports.logger = dateFileLog;exports.use = function(app) { //页面请求日志,用auto的话,默认级别是WARN app.use(log4js.connectLogger(dateFileLog, {level:log4js.levels.TRACE, format:’:method :url’}));}

问题解答

回答1:

已经解决了,原来是linux的文件路径和windows上文件路径的区别

相关文章: