JSPM

  • Created
  • Published
  • Downloads 10
  • Score
    100M100P100Q76270F
  • License Apache-2.0

Yet another simple logging utility.

Package Exports

  • @codification/cutwater-logging
  • @codification/cutwater-logging/package.json

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);