@letea/log
v1.1.1
Published
[![npm version](https://badge.fury.io/js/%40letea%2Flog.svg)](https://badge.fury.io/js/%40letea%2Flog)
Downloads
11
Readme
Log
A console with label for Browser.
Install
npm install @letea/log
Usage
import Log from "@letea/log";
const log = new Log("Log 1");
log.print("This is a print message");
// Or this way
/*
const log = new Log({
label: "Log 1"
});
*/
const log2 = new Log({
label: "Log 2",
labelBackgroundColor: "#c00"
});
log2.warn("This is a warn message.");
const log3 = new Log({
label: "Log 3",
labelBackgroundColor: "#0a0"
});
log3.error("This is a error message.");
Options
{
label: string,
labelBackgroundColor: string, // color format
messageColor: string // color format
}