Skip to content

bloglovin/node-bunyan-duckling

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

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

About

Maps the major Bunyan logging methods to console.log/error

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published