1.0.1 • Published 8 years ago
nulog v1.0.1
nulog
Switch off console.log
A custom logger to skip conditional statements when trying to mute logs.
If your code looks like this:
if (!process.env.TEST || !commandLineArguments.quiet)
console.log('A message to log in production');
You can now initialize a nulog
instance with a toggle variable that will
send your logs to /dev/null if false is passed.
var logger = require('nulog')(!commandLineArguments.quiet);
logger.log('You will not see this msg when --quiet is true');
1.0.1
8 years ago