当前位置: 软件>JavaScript软件
JavaScript 日志库 log4js
本文导语: 在Nodejs中使用express框架并没有自带的日志模块,我们可以选择log4js来完成日志记录的功能。 配置: ~ vi app.js var log4js = require('log4js'); log4js.configure({ appenders: [ { type: 'console' },{ type: 'file', ...
在Nodejs中使用express框架并没有自带的日志模块,我们可以选择log4js来完成日志记录的功能。
配置:
~ vi app.js var log4js = require('log4js'); log4js.configure({ appenders: [ { type: 'console' },{ type: 'file', filename: 'logs/access.log', maxLogSize: 1024, backups:4, category: 'normal' } ], replaceConsole: true });