mirror of
https://git.stamm.me/OpenServer/NodeLogging.git
synced 2024-11-14 17:21:04 +00:00
Refactoring
This commit is contained in:
parent
a3130f8a89
commit
c7ab71aea6
@ -1,10 +1,11 @@
|
||||
{
|
||||
"name": "@hibas123/nodelogging",
|
||||
"version": "1.3.19",
|
||||
"version": "1.3.10",
|
||||
"description": "",
|
||||
"main": "out/index.js",
|
||||
"types": "out/index.d.ts",
|
||||
"scripts": {
|
||||
"prepublish": "tsc",
|
||||
"build": "tsc",
|
||||
"watch": "tsc --watch",
|
||||
"test": "node out/test.js",
|
||||
|
@ -281,9 +281,9 @@ export class LoggingBase {
|
||||
let message_lines = mb.split("\n").map(line => prefix + line);
|
||||
|
||||
if (this.config.console_out) {
|
||||
let prefix = "";
|
||||
if (this.config.name) prefix = `[${this.config.name}]`;
|
||||
message_lines.forEach(line => console.log(consoleLogFormat + prefix + line + Colors.Reset));
|
||||
let name = "";
|
||||
if (this.config.name) name = `[${this.config.name}]`;
|
||||
message_lines.forEach(line => console.log(consoleLogFormat + name + line + Colors.Reset));
|
||||
}
|
||||
|
||||
let m = message_lines.join("\n");
|
||||
@ -303,7 +303,7 @@ export class LoggingBase {
|
||||
if (this.logFile) {
|
||||
this.logFile.write(data);
|
||||
}
|
||||
this.events.emit("message", { type: type, message: data.toString("utf8") });
|
||||
this.events.emit("message", { type: type, message: m, module: this.config.name });
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user