Package Exports
- get-log
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (get-log) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
get-log
Node.js Logging Utility, easy to use and ready for production.
Installation
$ git clone --branch=master git://github.com/enricostara/get-log.git
$ cd get-log
$ npm installCoding
var getLogger = require('get-log');
getLogger.PROJECT_NAME = 'my-best-app';
// or better: getLogger.PROJECT_NAME = require('./package.json').name;
var logger = getLogger('awesome-name');
logger.info('Let\'s start!');
logger.debug('Current file is %s', __filename);
var uglyLogger = getLogger('ugly-name');
uglyLogger.warn('This a Warning! Next debug log could not be displayed..');
uglyLogger.debug('Please, don\'t print me!');
uglyLogger.error('I\'m a log wrote on error stream, isn\'t it?');
Execution
Set DEBUG env to configure what logger (by name) can log at debug level.
Use * as wildcard and use - as name prefix to exclude; the values are comma separated.
$ DEBUG=*,-*ugly-name node example.js Output
[my-best-app:awesome-name] debug is ENABLED
[INFO] Thu, 30 Oct 2014 00:16:43 GMT my-best-app:awesome-name Let s start!
[DEBUG] Thu, 30 Oct 2014 00:16:43 GMT my-best-app:awesome-name Current file is /example.js
[WARN] Thu, 30 Oct 2014 00:16:43 GMT my-best-app:ugly-name This a Warning! Next debug log could not be displayed..
[ERROR] Thu, 30 Oct 2014 00:16:43 GMT my-best-app:ugly-name I m a log wrote on stderr, isn t it?Unit Testing
$ npm testLicense
The project is a convenient wrapper of the debug project and is released under the Simplified BSD license