0.0.23 • Published 6 years ago

pea-logger v0.0.23

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

npm package

Features

Pea-logger is a further package and extension based on log4js. It supports log for different types of error classification and integration. You can quickly and clearly check the log of current day and many days ago. You can also choose to view only error type of log.

Isn't it good? Let's start using it

Quick Start

Install

$ npm i pea-logger

Basic Usage

const peaLogger = require('pea-logger');

//Configuration
peaLogger.connect({ name: 'test', level: 'debug' });
// debug
logger.debug(JSON.stringify(process.env));
// info
logger.info('test success');
// error
logger.error('it is wrong');

If you want to do some configration of logger, such as error log path, logger name, ...etc

For example:

const config = {
    // this is the name of logger file, default is logger(it contains error logger file name and whole logger file name)
    name: 'test',
    // Configure the log output level
    level: 'debug'
}
peaLogger.connect(config);

Join in!

I'm happy to receive bug reports, fixes, documentation enhancements, and any other improvements.

And since I'm not a native English speaker, if you find any grammar mistakes in the documentation, please also let me know. :)

Contributors

License

MIT

0.0.23

6 years ago

0.0.22

6 years ago

0.0.21

6 years ago

0.0.11

6 years ago