h-log

A simple log manager.

Usage no npm install needed!

<script type="module">
  import hLog from 'https://cdn.skypack.dev/h-log';
</script>

README

Log

Build Status

Log is a simple log manager designed to be used either with a browser (or Node.js) console, or as a drop in alternative. The basic methods (debug, error, info, log, warn) can all be used the same way, and can be either serialized and sent somewhere, or dumped to the browser console.

// browser
var log = new Herrera.Log();

// node
var log = require("h-log").log;

log.onDone(
    function (entry) {
        console[entry.getType()](entry.toObject());
    }
);

log
    .error("This object is bad!", badObject)
    .attr("my", "attribute")
    .done();

Documentation