17 lines
608 B
JavaScript
17 lines
608 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");
|
||
|
/*Logging.config("./logs/tests/test", true);
|
||
|
|
||
|
Logging.log("test")
|
||
|
Logging.log("i", "am", { a: "an" }, 1000);
|
||
|
Logging.error(new Error("fehler 001"));
|
||
|
Logging.debug("Some Debug infos");
|
||
|
Logging.errorMessage("i", "am", "an", "error");
|
||
|
*/
|
||
|
//# sourceMappingURL=test.js.map
|