[!!!] The source code of this package is on https://github.com/docomodigital/js-utils, this repository will be removed asap
Advanced logger used for stable production build.
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");
npm install --save @docomodigital/js-logger
To read documentation, go to:
http://docomodigital.github.io/js-logger/latest
or run the following command insite the js-logger folder:
npm run doc:open