util-logging#
- This is a Node.js module that mimics the design of java.util.logging
- Full documentation available at http://micovery.bitbucket.org/util-logging
Usage:
//load the modulevar log = ; //create a logger, and set its logging levelvar logger = ; //log some a simple message logger; //log an error by itselflogger; //log and error accompanied by a messagelogger; //log an objectlogger; //log a formatted messagelogger; //log a formatted message with multiple replacementslogger;