Chip
![Support](http://img.shields.io/gittip/zerious.png)
Chip is a Node.js logging library that is designed to be fast, simple and
pretty. Its console transport shows little color symbols before your log messages.
Getting started
Add chip
to your dependencies.
npm install --save chip
Create a stdout logger, and use it.
var log = require('chip')();
log('Use a string.');
log(['Or'], ['an'], ['array']);
log({or: 'json, obviously'});
log.trace('This will be preceded by a cyan plus.');
log.debug('This will be preceded by a magenta diamond thingy.');
log.log('This will be preceded by a grey arrow, as above.');
log.info('This will be preceded by a green check mark.');
log.warn('This will be preceded by a thick yellow asterisk.');
log.error('This will be preceded by a thick red X.');
Default logger customization
log.setFormat
Customize the message format.
var log = require('chip')();
log.setFormat(function (message, prefix) {
return prefix + message + '!';
});
log.setLevel
Change the level of log that is shown (default: log
).
var log = require('chip')();
log.setLogLevel('trace');
Setting to a level from this list will enable logs of that level and all
of the levels after it: trace
, debug
, log
, info
, warn
, error
.
Setting the level to nothing
will stop all logs.
log.setPrefixes
Customize prefixes for the console log messages.
require('colors');
var log = require('chip')();
log.setPrefixes({
trace: 'TRACE '.cyan,
debug: 'DEBUG '.magenta,
log: 'LOG '.grey,
info: 'INFO '.green,
warn: 'WARN '.yellow,
error: 'ERROR '.red
});
var prefixes = log.getPrefixes();
log.setJsonSpace
Customize the spacing that JSON.stringify uses.
var log = require('chip')();
log.setJsonSpace(' ');
The default is two spaces.
Roadmap
Chip will soon support more transports than stdout
. Hey, it's a start.