This is the logger that I use in my CLI tools.
var davlog = require('davlog');
var logger = davlog.init({
name: 'foo',
color: 'white'
}); //Should only need once
logger.info('This is a test');
foo [info] This is test
Note that the module is an instance of itself, with the default options:
var davlog = require('davlog');
logger.info('This is a test');
davlog [info] This is test
infologwarnerrerror Will process.exit(1) when called.silent Disable all outputquiet Disable all but log and infoThe init function allows for 3 options:
name - The name prefix to the string: Defaults to: 'davlog'color - The string for the color or false to disable color: Defaults to magentatimestamps - If true, adds an ISO timestamp to the beginning of each log line.stdout - A writeable stream for normal log messages: Defaults to process.stdoutstderr - A writeable stream for error log messages: Defaults to process.stderrYou can override all prefixes by using the: logger.STRINGS object.
You can override all default colors by using the logger.COLORS object.
There are also stdout and stderr properties on the object, which are
readable streams. These are useful for piping log data elsewhere.
