README
An npm package for easily calling the Ark logging microservice
Setup
npm install ark-logging
Usage
import { ark } from "ark-logging"
ark.setDevelopment(true); // Disables log service and uses console.log instead
ark.error("message");
ark.warn("message");
ark.log("message");
ark.debug("message");