A library providing easy logging capabilities for both the browser and server-side.
Via npm:
npm install @codification/cutwater-logging
Via yarn:
yarn add @codification/cutwater-logging
import { LoggerFactory } from 'cutwater-core';
const LOG = LoggerFactory.getLogger();
LOG.info('Hey, here is a log message.');
LOG.debug('Examine this object: %j', someObj);