mirror of
				https://git.hibas.dev/OpenServer/NodeLogging.git
				synced 2025-11-04 06:50:45 +00:00 
			
		
		
		
	Refactoring
This commit is contained in:
		@ -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 });
 | 
			
		||||
   }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user