2.0.0 • Published 5 years ago

runner-logger v2.0.0

Weekly downloads
38
License
GPL-3.0
Repository
github
Last release
5 years ago

Task runner logger

build status npm version dependencies status devDependencies status Gitter RunKit

Installation

npm install runner-logger

Usage

Add to the scope:

const logger = require('runner-logger');

General output with different colors:

// 16:25:30.811 simple line
logger.info('simple line');

// 16:25:30.811 warning message
logger.warn('warning message');

// 16:25:30.811 error
logger.fail('error');

// print some complex data
logger.inspect(someObject);

Access colors instance:

const colors = logger.colors;

logger.info(
    colors.black.bgYellow('black text on yellow background')
);

Some task specific output:

const log = logger.wrap('webpack');

// 16:25:30.811 [webpack] build is ok
log.info('build is ok');

Contribution

If you have any problems or suggestions please open an issue according to the contribution rules.

License

runner-logger is released under the GPL-3.0 License.