@docomodigital/js-logger

3.0.2 • Public • Published

js-logger

npm version Greenkeeper badge

Advanced logger used for stable production build.

Usage

Using the node environment variables, you can decide to enable logger only in a stage environment and disable it while you are in a production environment.

// init jsLogger and disable it for production environment
jsLogger.init({
	enable: process.env.NODE_ENV !== 'production',
});

// debug function
jsLogger.debug("Hello, I'm a debug log");

// info function
jsLogger.info("Hello, I'm an info log");

// log function
jsLogger.log("Hello, I'm a log log");

// warn function
jsLogger.warn("Hello, I'm a warn log");

// error function
jsLogger.error("Hello, I'm an error log");

Installation

NPM

npm install --save @docomodigital/js-logger

Documentation

To read documentation, go to:

http://docomodigital.github.io/js-utils/js-logger/latest

Readme

Keywords

none

Package Sidebar

Install

npm i @docomodigital/js-logger

Weekly Downloads

1

Version

3.0.2

License

MIT

Unpacked Size

26.3 kB

Total Files

16

Last publish

Collaborators

  • everdrone
  • blame_etc