a smartlog destination targeting the local console
Go to file
2016-02-02 15:02:49 +01:00
test/browser added automatic env detection 2015-12-26 01:51:04 +01:00
ts update to hlight 2016-02-02 14:49:08 +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
.npmignore add .npmignore 2016-01-25 01:03:25 +01:00
.travis.yml update travis to use lossless account 2016-01-25 01:02:29 +01:00
code.css add code function 2016-01-30 06:19:44 +01:00
index.d.ts add code function 2016-01-30 06:19:44 +01:00
index.js fix deps 2016-02-02 15:02:41 +01:00
LICENSE Initial commit 2015-09-20 17:42:50 +02:00
package.json 2.0.6 2016-02-02 15:02:49 +01:00
README.md add code function 2016-01-30 06:19:44 +01:00
test.js add code function 2016-01-30 06:19:44 +01:00
testbrowser.js added automatic env detection 2015-12-26 01:51:04 +01:00

beautylog

beautiful logging

Status

Build Status Dependency Status bitHound Dependencies bitHound Score

Usage


### Simple Logging
var bl = require('beautylog'); //for use in OS console environment AND browser console


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

Code Highlighting

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