Skip to content

Latest commit

 

History

History
71 lines (46 loc) · 1.8 KB

readme.md

File metadata and controls

71 lines (46 loc) · 1.8 KB

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.