Package Exports
- @codification/cutwater-logging
- @codification/cutwater-logging/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@codification/cutwater-logging) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@codification/cutwater-logging
A library providing easy logging capabilities for both the browser and server-side.
Installation
Via npm:
npm install @codification/cutwater-logging
Via yarn:
yarn add @codification/cutwater-logging
Documentation
Quick Start Guide
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);