9 lines
372 B
JavaScript
9 lines
372 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
const index_1 = require("./index");
|
||
|
index_1.Logging.log("test");
|
||
|
index_1.Logging.log("i", "am", { a: "an" }, 1000);
|
||
|
index_1.Logging.error(new Error("fehler 001"));
|
||
|
index_1.Logging.debug("Some Debug infos");
|
||
|
index_1.Logging.errorMessage("i", "am", "an", "error");
|
||
|
//# sourceMappingURL=test.js.map
|