1.0.1 • Published 4 years ago

@yadou/yalog v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

@yadou/yalog

A simple log package

Install

npm install -D @yadou/yalog

Sample code

import Log from '@yadou/yalog'
let options = {
    level: 4, // info
    stderr: process.stderr, // err log (fatal warning) writestream, default(process.stderr)
    stdout: process.stdout  // info log (debug trace info) writestream, default(process.stdout)
}
Log.initLog(options)
// above options is default value, you can use direct without this init

// start log warning info
Log.warning('invalid user token');
// WARNING: Fri Feb 28 2020 21:55:39 GMT+0800 (GMT+08:00) invalid user token

// log info with params
Log.info('login success', { uid: 1000, token: 'user token'});
//INFO: Fri Feb 28 2020 21:55:39 GMT+0800 (GMT+08:00) login success uid[1000] token[user token]

// Log.debug Log.trace Log.info Log.warning Log.fatal

Tips

If this help you in work, please give me a star