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 console logger, and use it.
var log = require('chip')('console');
log('Use a string.');
log(['Or'], ['an'], ['array']);
log({or: 'json, obviously'});
log.debug('This will be preceded by a grey arrow, as above.');
log.trace('This will be preceded by a magenta diamond thingy.');
log.log('This will be preceded by a cyan plus.');
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.');
Roadmap
Chip will soon support more transports than just "console". Hey, it's a start.