ga-logger
v0.0.3
Published
Wrapper for console.log and console.info that can be disabled and enabled
Readme
#ga-logger
Wrapper for console.log and console.info that can be turned off and on
##Installation witm NPM
$ npm install --save ga-logger##Instantiation and Usage
// Require
var logger = new (require('ga-logger'))({enabled: false});
logger.log( obj, "See?");
logger.info( "clicked!");##Options
###enabled
type: boolean
default: true ###log
type: boolean
default: true###info
type: boolean
default: true