This package has been deprecated

Author message:

Use bunyan-adaptor instead

bunyan-duckling

1.0.2 • Public • Published

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

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i bunyan-duckling

      Weekly Downloads

      2

      Version

      1.0.2

      License

      MIT

      Last publish

      Collaborators

      • voxpelli