@codification/cutwater-logging
v0.35.31
Published
Yet another simple logging utility.
Downloads
358
Maintainers
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);