1.0.2 • Published 8 years ago

bunyan-duckling v1.0.2

Weekly downloads
10
License
MIT
Repository
github
Last release
8 years ago

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');      // Uses console.error()
logger.info('Informational'); // Uses console.log()

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()