0.0.1 • Published 9 years ago

color-journal v0.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
9 years ago

color-journal

Colorful journal

usage

npm install color-journal
var logger = var logger = require('color-journal')();
logger.log('log');
logger.info('info');
logger.trace('trace');
logger.debug('debug');
logger.warn('warn');
logger.error('error');

Then you will get this:
color-journal

configuration

default:

{
  log_dir: './tmp/',
  record_level: 0, // write into files when method rank greater than record_level
  log_methods: {
    log: { color: 'white', rank: '0'},
    info: { color: 'green', rank: '1'},
    trace: { color: 'cyan', rank: '2'},
    debug: { color: 'blue', rank: '3'},
    warn: { color: 'yellow', rank: '4'},
    error: { color: 'red', rank: '5'},
  }
}

You want more color? See this

Licence

Copyright (c) 2015, Kivi s_f_dragon@163.com