a smartlog destination targeting the local console
Go to file
2015-10-02 23:37:49 +02:00
ts added test and fixed an error 2015-09-26 20:46:16 +02:00
.gitignore updated the module structure 2015-09-21 21:50:52 +02:00
.travis.yml Update .travis.yml 2015-09-20 22:06:28 +02:00
index.js added test and fixed an error 2015-09-26 20:46:16 +02:00
LICENSE Initial commit 2015-09-20 17:42:50 +02:00
package.json added release script 2015-10-02 23:37:49 +02:00
README.md Update README.md 2015-09-30 17:27:01 +02:00
test.js added test and fixed an error 2015-09-26 20:46:16 +02:00

beautylog

beautiful logging

Buildstatus

Build Status Dependency Status

Usage

var bl = require('beautylog');
bl.log('some log message'); //normal console log message
bl.success('some success message'); //success console log message
bl.error('some error message'); //error console log message

//alternatively you can use a logType parameter
bl.log('some log message','normal');
bl.log('some success message','success');
bl.log('some error message','error');

The plugin produces beautyful output like this: console.png