Improving logging

This commit is contained in:
Fabian
2019-04-04 22:22:52 -04:00
parent 11619948e3
commit 6065c37362
7 changed files with 304 additions and 55 deletions

View File

@ -13,6 +13,7 @@ if (typeof err.stack !== "string") console.log("Stacktrace invalid", err.stack)
let cus = new LoggingBase({ name: "test" });
cus.log("Hello from custom Logger")
cus.log("This has some %c symbols inside of it!");
let cus2 = new LoggingBase("test2");
cus2.log("Hello from custom Logger 2")