@codification/cutwater-logging

Yet another simple logging utility.

Usage no npm install needed!

<script type="module">
  import codificationCutwaterLogging from 'https://cdn.skypack.dev/@codification/cutwater-logging';
</script>

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