A console with label for Browser.
npm install @letea/log
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.");
{
label: string,
labelBackgroundColor: string, // color format
messageColor: string // color format
}