@zhike/logl
v1.1.2
Published
little way to log file and robust
Downloads
4
Readme
Logl
a little way to log
Install
npm install logl --save
How to Use
'use strict';
const http = require('http');
const logl = require('logl');
const logger = logl.getLogger('server');
http.createServer(app).listen(port, function(){
logger.info('server was running at:', port)
})
Why i write this package?
if you project use pm2, we do not need other log package, because pm2 will according to
the io form console to log and save it in Dir .pm2/log/
.
functions:
logger.info();
logger.error();
logger.warn();
logger.fatal();
logger.debug();