Improving Logging output.
This commit is contained in:
parent
0f3dc07dff
commit
331169c925
@ -277,12 +277,12 @@ export class LoggingBase {
|
|||||||
}
|
}
|
||||||
let file = caller || getCallerFile();
|
let file = caller || getCallerFile();
|
||||||
let date = new Date().toISOString().replace(/T/, ' ').replace(/\..+/, '');
|
let date = new Date().toISOString().replace(/T/, ' ').replace(/\..+/, '');
|
||||||
let prefix = `[${LoggingTypes[type]}][${file.file}:${file.line}][${date}]: `;
|
let prefix = `[ ${date} ][${LoggingTypes[type].toUpperCase()}][${file.file}:${String(file.line).padEnd(3, " ")}]: `;
|
||||||
let message_lines = mb.split("\n").map(line => prefix + line);
|
let message_lines = mb.split("\n").map(line => prefix + line);
|
||||||
|
|
||||||
if (this.config.console_out) {
|
if (this.config.console_out) {
|
||||||
let name = "";
|
let name = "";
|
||||||
if (this.config.name) name = `[${this.config.name}]`;
|
if (this.config.name) name = `[${this.config.name}]=>`;
|
||||||
message_lines.forEach(line => console.log(consoleLogFormat + name + line + Colors.Reset));
|
message_lines.forEach(line => console.log(consoleLogFormat + name + line + Colors.Reset));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -47,6 +47,7 @@ async function benchmark(count: number, message_size: number) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Logging.waitForSetup().then(async () => {
|
Logging.waitForSetup().then(async () => {
|
||||||
|
return;
|
||||||
console.log("Large data benchmark:")
|
console.log("Large data benchmark:")
|
||||||
await benchmark(7000, 50000);
|
await benchmark(7000, 50000);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user