@xmobitea/gn-server 2.4.6 → 2.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -443,7 +443,7 @@ if (parentPort) {
443
443
  context: {},
444
444
  customTags: request.customTags,
445
445
  log(log: any) {
446
- logs.push(log);
446
+ logs.push(JSON.stringify(log));
447
447
  },
448
448
  };
449
449
 
@@ -525,7 +525,7 @@ if (parentPort) {
525
525
  secretInfo: null as any,
526
526
  request: request.request,
527
527
  log(log: any) {
528
- logs.push(log);
528
+ logs.push(JSON.stringify(log));
529
529
  },
530
530
  };
531
531
 
@@ -538,7 +538,7 @@ if (parentPort) {
538
538
  secretInfo: null as any,
539
539
  request: null as any,
540
540
  log(log: any) {
541
- logs.push(log);
541
+ logs.push(JSON.stringify(log));
542
542
  },
543
543
  };
544
544
 
@@ -573,7 +573,7 @@ if (parentPort) {
573
573
  secretInfo: secretInfo,
574
574
  request: request.request,
575
575
  log(log: any) {
576
- logs.push(log);
576
+ logs.push(JSON.stringify(log));
577
577
  },
578
578
  };
579
579
 
@@ -599,7 +599,7 @@ if (parentPort) {
599
599
  secretInfo: secretInfo,
600
600
  request: request.request,
601
601
  log(log: any) {
602
- logs.push(log);
602
+ logs.push(JSON.stringify(log));
603
603
  },
604
604
  };
605
605
 
package/dist/index.js CHANGED
@@ -86372,7 +86372,6 @@ class ServerApplication extends BuilderBase {
86372
86372
  fullLogPath = process.cwd() + "/" + configFullLogPath;
86373
86373
  }
86374
86374
  }
86375
- console.log(fullLogPath);
86376
86375
  console.log("[GN] FullLogPath at: " + fullLogPath);
86377
86376
  xDebug_1.Debug.init({
86378
86377
  isLogToConsoleEnable: this.getLogSettings().getLogToConsoleEnable(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmobitea/gn-server",
3
- "version": "2.4.6",
3
+ "version": "2.4.7",
4
4
  "description": "Game Networking Server by XmobiTea (Pro)",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",