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