a smartlog destination targeting the local console
Go to file
2015-12-20 23:14:41 +01:00
ts added custom type to table class 2015-12-20 23:14:22 +01:00
.bithoundrc small fix for better pipelog support 2015-12-02 16:23:39 +01:00
.gitignore cleaned up 2015-11-24 00:19:20 +01:00
.travis.yml Update .travis.yml 2015-09-20 22:06:28 +02:00
index.js added custom type to table class 2015-12-20 23:14:22 +01:00
LICENSE Initial commit 2015-09-20 17:42:50 +02:00
package.json 1.0.7 2015-12-20 23:14:41 +01:00
README.md added custom type to table class 2015-12-20 23:14:22 +01:00
test.js added custom type to table class 2015-12-20 23:14:22 +01:00

beautylog

beautiful logging

Status

Build Status Dependency Status bitHound Dependencies bitHound Score

Usage


### Simple Logging
var bl = require('beautylog')("os"); //for use in OS console environment
var bl = require('beautylog')("browser"); //for use in browser console environment like Google Chrome


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 beautiful output like this: console.png

Console Tables

beautylog allows displaying data in nice tables for better overview.

There are different types of tables.

Custom

var bl = require('beautylog')("os"); //for use in OS console environment
var myTable = bl.table.new("custom",["Heading1".blue,"Heading2".blue,"Heading3".blue]); // type "custom"
myTable.push(["check 1","success"]); // adds a row the myTable
myTable.push(["check 2","error"]); // adds a row the myTable
myTable.push(["check 3","error"]); // adds a row the myTable
myTable.print(); //prints myTable to the console

Checks

var bl = require('beautylog')("os"); //for use in OS console environment
var myTable = bl.table.new("checks"); // type checks
myTable.push(["check 1","success"]); // adds a row the myTable
myTable.push(["check 2","error"]); // adds a row the myTable
myTable.push(["check 3","error"]); // adds a row the myTable
myTable.print(); //prints myTable to the console

The table from the code with type "checks" above looks like this: table.png