Bunyan Duckling
Maps the major Bunyan logging methods to console.log()/.error(). Useful for modules that want to be compatible with, but not require, Bunyan logging.
Installation
npm install bunyan-duckling --save
Usage
Simple:
var logger = require('bunyan-duckling');
logger.error('Warning');
logger.info('Informational');
Supported methods
Has support for all seven Bunyan log levels.
.fatal() – maps to console.error()
.error() – maps to console.error()
.warn() – maps to console.log()
.info() – maps to console.log()
.debug() – maps to console.log()
.trace() – maps to console.log()