Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/devgru/node-ccl

Simple context-enabled colored logger for node.js-based apps
https://github.com/devgru/node-ccl

Last synced: 4 days ago
JSON representation

Simple context-enabled colored logger for node.js-based apps

Awesome Lists containing this project

README

        

# node-ccl

Colored, context-enabled logger.

It is in beta version.

The way I use it:

//initial global settings
var logger = require('node-ccl');
logger.setDefaultShowDebug(true);
logger.setPadding(8);

//using it
var log = require('node-ccl').forContext('RUNNER', 'yellow');

//and then
log.info('blah-blah');
log.debug(someJsonObject); //it will use JSON.stringify automaticly
log.warn('some bad warning');