mirror of
https://git.stamm.me/OpenServer/NodeLogging.git
synced 2024-11-15 02:11:04 +00:00
50 lines
2.1 KiB
JavaScript
50 lines
2.1 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const index_1 = require("./index");
|
|
const crypto_1 = require("crypto");
|
|
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");
|
|
index_1.Logging.log("\x1b[31m\x1b[31m\x1b[31m\x1b[31m\x1b[31m\x1b[31m TEST \x1b[31m\x1b[31m\x1b[31m");
|
|
let err = new Error();
|
|
if (typeof err.stack !== "string")
|
|
console.log("Stacktrace invalid", err.stack);
|
|
let cus = new index_1.LoggingBase({ name: "test" });
|
|
cus.log("Hello from custom Logger");
|
|
let cus2 = new index_1.LoggingBase("test2");
|
|
cus2.log("Hello from custom Logger 2");
|
|
let cus22 = new index_1.LoggingBase("test2");
|
|
cus22.log("Hello from custom Logger 22");
|
|
cus2.log("Hello from custom Logger 2");
|
|
cus22.log("Hello from custom Logger 22");
|
|
cus2.log("Hello from custom Logger 2");
|
|
cus22.log("Hello from custom Logger 22");
|
|
cus2.log("Hello from custom Logger 2");
|
|
cus22.log("Hello from custom Logger 22");
|
|
cus2.log("Hello from custom Logger 2");
|
|
cus22.log("Hello from custom Logger 22");
|
|
cus2.log("Hello from custom Logger 2");
|
|
index_1.Logging.console_out = false;
|
|
async function benchmark(count, message_size) {
|
|
await index_1.Logging.waitForSetup();
|
|
const randData = crypto_1.randomBytes(message_size).toString("hex");
|
|
const t = process.hrtime();
|
|
for (let i = 0; i < count; i++) {
|
|
index_1.Logging.log(randData);
|
|
}
|
|
const diff = process.hrtime(t);
|
|
const NS_PER_SEC = 1e9;
|
|
await index_1.Logging.waitForSetup();
|
|
const ns = diff[0] * NS_PER_SEC + diff[1];
|
|
console.log(`Benchmark took ${ns / 1000000}ms for ${count} messages with a size of ${message_size} characters`);
|
|
console.log(`This is equal to ${(ns / 1000000) / count} ms per message`);
|
|
}
|
|
index_1.Logging.waitForSetup().then(async () => {
|
|
console.log("Large data benchmark:");
|
|
await benchmark(7000, 50000);
|
|
console.log("Realdata data benchmark:");
|
|
await benchmark(100000, 100);
|
|
});
|
|
//# sourceMappingURL=test.js.map
|