Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

extra-log

rumax4MIT1.0.1

Simple log wrapper for console which uses chalk for colors and cowsay for better loggin

console, log, color

readme

extra-log

CircleCI codecov npm version

Simple wrapper for console using chalk and cowsay to provide basic log functionality with a possibility to use colors and more noticeable error and warning types of log. This is especially useful in huge logs.

Example

const log = require('extra-log');

log.msg('Message');
log.info('Info');
log.success('Success');
log.warn('Warn');
log.error('Error');

Output