@fastcar/core 0.2.41 → 0.2.43

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.
Files changed (33) hide show
  1. package/package.json +2 -2
  2. package/src/FastCarApplication.ts +15 -4
  3. package/src/annotation/stereotype/Log.ts +1 -1
  4. package/src/config/ApplicationConfig.ts +4 -0
  5. package/target/FastCarApplication.js +13 -5
  6. package/target/annotation/stereotype/Log.js +1 -1
  7. package/test/example/logs/[fastcar-server] logger.log +3 -9
  8. package/test/example/logs/[fastcar-server] sys.log +8 -8
  9. package/test/example/logs/{sys13.log → sys.log} +2 -5
  10. package/test/example/resource/application.yml +3 -0
  11. package/test/example/simple/noclude/excludeApp.ts +6 -0
  12. package/target/annotation/AddRequireModule.js +0 -21
  13. package/target/annotation/Autowired.js +0 -15
  14. package/target/annotation/Calldependency.js +0 -18
  15. package/test/example/logs/[fastcar-server] sys1.log +0 -8
  16. package/test/example/logs/logger.log +0 -12
  17. package/test/example/logs/logger1.log +0 -12
  18. package/test/example/logs/logger2.log +0 -12
  19. package/test/example/logs/logger3.log +0 -12
  20. package/test/example/logs/logger4.log +0 -12
  21. package/test/example/logs/logger5.log +0 -12
  22. package/test/example/logs/logger6.log +0 -6
  23. package/test/example/logs/sys10.log +0 -12
  24. package/test/example/logs/sys11.log +0 -8
  25. package/test/example/logs/sys12.log +0 -3
  26. package/test/example/logs/sys3.log +0 -13
  27. package/test/example/logs/sys4.log +0 -15
  28. package/test/example/logs/sys5.log +0 -9
  29. package/test/example/logs/sys6.log +0 -10
  30. package/test/example/logs/sys7.log +0 -15
  31. package/test/example/logs/sys8.log +0 -11
  32. package/test/example/logs/sys9.log +0 -10
  33. /package/test/example/logs/{app.log → sys1.log} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastcar/core",
3
- "version": "0.2.41",
3
+ "version": "0.2.43",
4
4
  "homepage": "https://github.com/williamDazhangyu/fast-car",
5
5
  "main": "target/index.js",
6
6
  "author": "william_zhong",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "reflect-metadata": "^0.1.13",
36
- "winston": "^3.6.0",
36
+ "winston": "^3.9.0",
37
37
  "yaml": "^1.10.2"
38
38
  },
39
39
  "devDependencies": {
@@ -245,10 +245,16 @@ class FastCarApplication extends Events {
245
245
  loadClass() {
246
246
  //加载文件扫描下的bean
247
247
  let tmpFilePath: string[] = Array.of();
248
- let includeList: string[] = Reflect.get(this, FastCarMetaData.ComponentScan) as string[];
248
+ let includeList: string[] = (Reflect.get(this, FastCarMetaData.ComponentScan) as string[]) || [];
249
249
 
250
- if (includeList) {
250
+ //从配置文件内读
251
+ if (Array.isArray(this.sysConfig.application?.scan?.include) && this.sysConfig.application?.scan?.include) {
252
+ includeList = [...includeList, ...this.sysConfig.application.scan.include];
253
+ }
254
+
255
+ if (includeList.length > 0) {
251
256
  includeList.forEach((item) => {
257
+ //获取路径
252
258
  let tmpList = FileUtil.getFilePathList(item);
253
259
  tmpFilePath = tmpFilePath.concat(tmpList);
254
260
  });
@@ -258,8 +264,13 @@ class FastCarApplication extends Events {
258
264
  filePathList = tmpFilePath.concat(filePathList);
259
265
  filePathList = [...new Set(filePathList)];
260
266
 
261
- let excludeList: string[] = Reflect.get(this, FastCarMetaData.ComponentScanExclusion) as string[];
262
- if (excludeList) {
267
+ let excludeList: string[] = (Reflect.get(this, FastCarMetaData.ComponentScanExclusion) as string[]) || [];
268
+
269
+ if (Array.isArray(this.sysConfig.application?.scan?.exclude) && this.sysConfig.application?.scan?.exclude) {
270
+ excludeList = [...excludeList, ...this.sysConfig.application.scan.exclude];
271
+ }
272
+
273
+ if (excludeList.length > 0) {
263
274
  let excludAllPath: string[] = [];
264
275
  excludeList.forEach((item) => {
265
276
  let exlist = FileUtil.getFilePathList(item);
@@ -11,7 +11,7 @@ export default function Log(category?: string) {
11
11
  get: (): Logger => {
12
12
  let app: ApplicationInterface = Reflect.get(global, CommonConstant.FastcarApp);
13
13
  let appid = app.getSetting(CommonConstant.APPId) || ""; //进行差异化区分
14
- return app ? app.getLogger(appid ? `[${appid}] ${m}` : m) : console;
14
+ return app ? app.getLogger(appid ? `${appid}.${m}` : m) : console;
15
15
  },
16
16
  });
17
17
  };
@@ -2,4 +2,8 @@ export type ApplicationConfig = {
2
2
  name: string;
3
3
  env: string;
4
4
  version: string;
5
+ scan?: {
6
+ include?: string[];
7
+ exclude?: string[];
8
+ };
5
9
  };
@@ -207,9 +207,14 @@ let FastCarApplication = FastCarApplication_1 = class FastCarApplication extends
207
207
  loadClass() {
208
208
  //加载文件扫描下的bean
209
209
  let tmpFilePath = Array.of();
210
- let includeList = Reflect.get(this, FastCarMetaData_1.FastCarMetaData.ComponentScan);
211
- if (includeList) {
210
+ let includeList = Reflect.get(this, FastCarMetaData_1.FastCarMetaData.ComponentScan) || [];
211
+ //从配置文件内读
212
+ if (Array.isArray(this.sysConfig.application?.scan?.include) && this.sysConfig.application?.scan?.include) {
213
+ includeList = [...includeList, ...this.sysConfig.application.scan.include];
214
+ }
215
+ if (includeList.length > 0) {
212
216
  includeList.forEach((item) => {
217
+ //获取路径
213
218
  let tmpList = FileUtil_1.default.getFilePathList(item);
214
219
  tmpFilePath = tmpFilePath.concat(tmpList);
215
220
  });
@@ -217,8 +222,11 @@ let FastCarApplication = FastCarApplication_1 = class FastCarApplication extends
217
222
  let filePathList = FileUtil_1.default.getFilePathList(this.basePath);
218
223
  filePathList = tmpFilePath.concat(filePathList);
219
224
  filePathList = [...new Set(filePathList)];
220
- let excludeList = Reflect.get(this, FastCarMetaData_1.FastCarMetaData.ComponentScanExclusion);
221
- if (excludeList) {
225
+ let excludeList = Reflect.get(this, FastCarMetaData_1.FastCarMetaData.ComponentScanExclusion) || [];
226
+ if (Array.isArray(this.sysConfig.application?.scan?.exclude) && this.sysConfig.application?.scan?.exclude) {
227
+ excludeList = [...excludeList, ...this.sysConfig.application.scan.exclude];
228
+ }
229
+ if (excludeList.length > 0) {
222
230
  let excludAllPath = [];
223
231
  excludeList.forEach((item) => {
224
232
  let exlist = FileUtil_1.default.getFilePathList(item);
@@ -658,7 +666,7 @@ let FastCarApplication = FastCarApplication_1 = class FastCarApplication extends
658
666
  };
659
667
  __decorate([
660
668
  (0, Log_1.default)("sys"),
661
- __metadata("design:type", Object)
669
+ __metadata("design:type", winston.Logger)
662
670
  ], FastCarApplication.prototype, "sysLogger", void 0);
663
671
  FastCarApplication = FastCarApplication_1 = __decorate([
664
672
  Component_1.default,
@@ -9,7 +9,7 @@ function Log(category) {
9
9
  get: () => {
10
10
  let app = Reflect.get(global, CommonConstant_1.CommonConstant.FastcarApp);
11
11
  let appid = app.getSetting(CommonConstant_1.CommonConstant.APPId) || ""; //进行差异化区分
12
- return app ? app.getLogger(appid ? `[${appid}] ${m}` : m) : console;
12
+ return app ? app.getLogger(appid ? `${appid}.${m}` : m) : console;
13
13
  },
14
14
  });
15
15
  };
@@ -1,9 +1,3 @@
1
- {"timestamp":"2022-12-21 17:57:11.546","level":"INFO","label":"[fastcar-server] logger","message":"自定义的日志输出"}
2
- {"timestamp":"2022-12-21 17:57:11.547","level":"WARN","label":"[fastcar-server] logger","message":"自定义警告"}
3
- {"timestamp":"2022-12-21 17:57:11.548","level":"ERROR","label":"[fastcar-server] logger","message":"自定义报错"}
4
- {"timestamp":"2022-12-21 18:00:16.672","level":"INFO","label":"[fastcar-server] logger","message":"自定义的日志输出"}
5
- {"timestamp":"2022-12-21 18:00:16.673","level":"WARN","label":"[fastcar-server] logger","message":"自定义警告"}
6
- {"timestamp":"2022-12-21 18:00:16.674","level":"ERROR","label":"[fastcar-server] logger","message":"自定义报错"}
7
- {"timestamp":"2023-01-04 16:48:09.670","level":"INFO","label":"[fastcar-server] logger","message":"自定义的日志输出"}
8
- {"timestamp":"2023-01-04 16:48:09.671","level":"WARN","label":"[fastcar-server] logger","message":"自定义警告"}
9
- {"timestamp":"2023-01-04 16:48:09.672","level":"ERROR","label":"[fastcar-server] logger","message":"自定义报错"}
1
+ {"timestamp":"2023-05-17 15:11:40.432","level":"INFO","label":"[fastcar-server] logger","message":"自定义的日志输出"}
2
+ {"timestamp":"2023-05-17 15:11:40.433","level":"WARN","label":"[fastcar-server] logger","message":"自定义警告"}
3
+ {"timestamp":"2023-05-17 15:11:40.434","level":"ERROR","label":"[fastcar-server] logger","message":"自定义报错"}
@@ -1,8 +1,8 @@
1
- {"timestamp":"2022-12-21 18:00:16.571","level":"INFO","label":"[fastcar-server] sys","message":"Start scanning component"}
2
- {"timestamp":"2022-12-21 18:00:16.660","level":"INFO","label":"[fastcar-server] sys","message":"Complete component scan"}
3
- {"timestamp":"2022-12-21 18:00:16.662","level":"INFO","label":"[fastcar-server] sys","message":"Call application initialization method"}
4
- {"timestamp":"2022-12-21 18:00:16.664","level":"INFO","label":"[fastcar-server] sys","message":"start server app is run"}
5
- {"timestamp":"2022-12-21 18:00:16.665","level":"INFO","label":"[fastcar-server] sys","message":"version 1.0.0"}
6
- {"timestamp":"2022-12-21 18:00:18.691","level":"INFO","label":"[fastcar-server] sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
7
- {"timestamp":"2022-12-21 18:00:18.692","level":"INFO","label":"[fastcar-server] sys","message":"Call the method before the application stops"}
8
- {"timestamp":"2022-12-21 18:00:23.695","level":"INFO","label":"[fastcar-server] sys","message":"application stop"}
1
+ {"timestamp":"2023-05-17 15:11:21.300","level":"INFO","label":"[fastcar-server] sys","message":"Start scanning component"}
2
+ {"timestamp":"2023-05-17 15:11:40.421","level":"INFO","label":"[fastcar-server] sys","message":"Complete component scan"}
3
+ {"timestamp":"2023-05-17 15:11:40.422","level":"INFO","label":"[fastcar-server] sys","message":"Call application initialization method"}
4
+ {"timestamp":"2023-05-17 15:11:40.424","level":"INFO","label":"[fastcar-server] sys","message":"start server app is run"}
5
+ {"timestamp":"2023-05-17 15:11:40.425","level":"INFO","label":"[fastcar-server] sys","message":"version 1.0.0"}
6
+ {"timestamp":"2023-05-17 15:11:42.456","level":"INFO","label":"[fastcar-server] sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
7
+ {"timestamp":"2023-05-17 15:11:42.457","level":"INFO","label":"[fastcar-server] sys","message":"Call the method before the application stops"}
8
+ {"timestamp":"2023-05-17 15:11:47.460","level":"INFO","label":"[fastcar-server] sys","message":"application stop"}
@@ -1,5 +1,2 @@
1
- {"timestamp":"2022-09-22 14:02:49.434","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [notFound] ","stack":"Error: Unsatisfied dependency expressed through [notFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\AliasInjection.ts:16:27)\n at NotFoundController.getNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:14:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:92:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
2
- {"timestamp":"2022-09-22 14:02:49.440","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [autoNotFound] ","stack":"Error: Unsatisfied dependency expressed through [autoNotFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at NotFoundController.getAutoNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:18:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:98:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
3
- {"timestamp":"2022-09-22 14:02:51.439","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
4
- {"timestamp":"2022-09-22 14:02:51.439","level":"INFO","label":"sys","message":"Call the method before the application stops"}
5
- {"timestamp":"2022-09-22 14:02:56.450","level":"INFO","label":"sys","message":"application stop"}
1
+ {"timestamp":"2023-05-17 15:11:40.448","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [notFound] ","stack":"Error: Unsatisfied dependency expressed through [notFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\AliasInjection.ts:16:27)\n at NotFoundController.getNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:14:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:89:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
2
+ {"timestamp":"2023-05-17 15:11:40.456","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [autoNotFound] ","stack":"Error: Unsatisfied dependency expressed through [autoNotFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at NotFoundController.getAutoNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:18:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:95:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
@@ -1,3 +1,6 @@
1
+ application:
2
+ scan:
3
+ exclude: ["noclude"]
1
4
  settings:
2
5
  log:
3
6
  consoleLevel: info
@@ -0,0 +1,6 @@
1
+ import "reflect-metadata";
2
+ import { Component } from "../../../../src/annotation";
3
+
4
+ //永远不会被扫描
5
+ @Component
6
+ export default class excludeApp {}
@@ -1,21 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const FastCarMetaData_1 = require("../constant/FastCarMetaData");
4
- require("reflect-metadata");
5
- /***
6
- * @version 1.0 依赖模块注入
7
- *
8
- */
9
- function AddRequireModule(target, m, alias) {
10
- let relyname = FastCarMetaData_1.FastCarMetaData.IocModule;
11
- if (Reflect.hasMetadata(relyname, target)) {
12
- let iocMap = Reflect.getMetadata(relyname, target);
13
- iocMap.set(m, alias);
14
- }
15
- else {
16
- let modules = new Map();
17
- modules.set(m, alias);
18
- Reflect.defineMetadata(relyname, modules, target);
19
- }
20
- }
21
- exports.default = AddRequireModule;
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const ReflectUtil_1 = require("../utils/ReflectUtil");
4
- const AddRequireModule_1 = require("./AddRequireModule");
5
- /***
6
- * @version 1.0 说明哪些模块需要被加载
7
- *
8
- *
9
- */
10
- function Autowired(target, propertyKey) {
11
- //反向找设计类型
12
- let key = ReflectUtil_1.default.getNameByPropertyKey(target, propertyKey);
13
- AddRequireModule_1.default(target, propertyKey, key);
14
- }
15
- exports.default = Autowired;
@@ -1,18 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const CommonConstant_1 = require("../constant/CommonConstant");
4
- const ReflectUtil_1 = require("../utils/ReflectUtil");
5
- /***
6
- * @version 1.0 在使用该函数时进行调用 声明的类可以不是组件
7
- *
8
- */
9
- function CallDependency(target, propertyKey) {
10
- Reflect.defineProperty(target, propertyKey, {
11
- get: () => {
12
- let key = ReflectUtil_1.default.getNameByPropertyKey(target, propertyKey);
13
- let app = Reflect.get(global, CommonConstant_1.CommonConstant.FastcarApp);
14
- return app ? app.getComponentByName(key) : null;
15
- },
16
- });
17
- }
18
- exports.default = CallDependency;
@@ -1,8 +0,0 @@
1
- {"timestamp":"2023-01-04 16:48:09.561","level":"INFO","label":"[fastcar-server] sys","message":"Start scanning component"}
2
- {"timestamp":"2023-01-04 16:48:09.655","level":"INFO","label":"[fastcar-server] sys","message":"Complete component scan"}
3
- {"timestamp":"2023-01-04 16:48:09.657","level":"INFO","label":"[fastcar-server] sys","message":"Call application initialization method"}
4
- {"timestamp":"2023-01-04 16:48:09.660","level":"INFO","label":"[fastcar-server] sys","message":"start server app is run"}
5
- {"timestamp":"2023-01-04 16:48:09.660","level":"INFO","label":"[fastcar-server] sys","message":"version 1.0.0"}
6
- {"timestamp":"2023-01-04 16:48:11.690","level":"INFO","label":"[fastcar-server] sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
7
- {"timestamp":"2023-01-04 16:48:11.691","level":"INFO","label":"[fastcar-server] sys","message":"Call the method before the application stops"}
8
- {"timestamp":"2023-01-04 16:48:16.703","level":"INFO","label":"[fastcar-server] sys","message":"application stop"}
@@ -1,12 +0,0 @@
1
- {"timestamp":"2022-08-26 18:04:16.808","level":"INFO","label":"logger","message":"自定义的日志输出"}
2
- {"timestamp":"2022-08-26 18:04:16.809","level":"WARN","label":"logger","message":"自定义警告"}
3
- {"timestamp":"2022-08-26 18:04:16.810","level":"ERROR","label":"logger","message":"自定义报错"}
4
- {"timestamp":"2022-08-26 18:05:14.219","level":"INFO","label":"logger","message":"自定义的日志输出"}
5
- {"timestamp":"2022-08-26 18:05:14.221","level":"WARN","label":"logger","message":"自定义警告"}
6
- {"timestamp":"2022-08-26 18:05:14.221","level":"ERROR","label":"logger","message":"自定义报错"}
7
- {"timestamp":"2022-08-26 18:07:32.805","level":"INFO","label":"logger","message":"自定义的日志输出"}
8
- {"timestamp":"2022-08-26 18:07:32.806","level":"WARN","label":"logger","message":"自定义警告"}
9
- {"timestamp":"2022-08-26 18:07:32.807","level":"ERROR","label":"logger","message":"自定义报错"}
10
- {"timestamp":"2022-09-02 14:17:35.618","level":"INFO","label":"logger","message":"自定义的日志输出"}
11
- {"timestamp":"2022-09-02 14:17:35.619","level":"WARN","label":"logger","message":"自定义警告"}
12
- {"timestamp":"2022-09-02 14:17:35.619","level":"ERROR","label":"logger","message":"自定义报错"}
@@ -1,12 +0,0 @@
1
- {"timestamp":"2022-09-09 11:20:22.479","level":"INFO","label":"logger","message":"自定义的日志输出"}
2
- {"timestamp":"2022-09-09 11:20:22.480","level":"WARN","label":"logger","message":"自定义警告"}
3
- {"timestamp":"2022-09-09 11:20:22.481","level":"ERROR","label":"logger","message":"自定义报错"}
4
- {"timestamp":"2022-09-09 11:31:43.148","level":"INFO","label":"logger","message":"自定义的日志输出"}
5
- {"timestamp":"2022-09-09 11:31:43.149","level":"WARN","label":"logger","message":"自定义警告"}
6
- {"timestamp":"2022-09-09 11:31:43.150","level":"ERROR","label":"logger","message":"自定义报错"}
7
- {"timestamp":"2022-09-09 17:28:55.362","level":"INFO","label":"logger","message":"自定义的日志输出"}
8
- {"timestamp":"2022-09-09 17:28:55.363","level":"WARN","label":"logger","message":"自定义警告"}
9
- {"timestamp":"2022-09-09 17:28:55.365","level":"ERROR","label":"logger","message":"自定义报错"}
10
- {"timestamp":"2022-09-13 09:53:50.01","level":"INFO","label":"logger","message":"自定义的日志输出"}
11
- {"timestamp":"2022-09-13 09:53:50.02","level":"WARN","label":"logger","message":"自定义警告"}
12
- {"timestamp":"2022-09-13 09:53:50.03","level":"ERROR","label":"logger","message":"自定义报错"}
@@ -1,12 +0,0 @@
1
- {"timestamp":"2022-09-13 09:54:11.527","level":"INFO","label":"logger","message":"自定义的日志输出"}
2
- {"timestamp":"2022-09-13 09:54:11.528","level":"WARN","label":"logger","message":"自定义警告"}
3
- {"timestamp":"2022-09-13 09:54:11.529","level":"ERROR","label":"logger","message":"自定义报错"}
4
- {"timestamp":"2022-09-13 09:54:28.779","level":"INFO","label":"logger","message":"自定义的日志输出"}
5
- {"timestamp":"2022-09-13 09:54:28.780","level":"WARN","label":"logger","message":"自定义警告"}
6
- {"timestamp":"2022-09-13 09:54:28.781","level":"ERROR","label":"logger","message":"自定义报错"}
7
- {"timestamp":"2022-09-13 10:04:35.544","level":"INFO","label":"logger","message":"自定义的日志输出"}
8
- {"timestamp":"2022-09-13 10:04:35.545","level":"WARN","label":"logger","message":"自定义警告"}
9
- {"timestamp":"2022-09-13 10:04:35.545","level":"ERROR","label":"logger","message":"自定义报错"}
10
- {"timestamp":"2022-09-16 10:02:54.863","level":"INFO","label":"logger","message":"自定义的日志输出"}
11
- {"timestamp":"2022-09-16 10:02:54.864","level":"WARN","label":"logger","message":"自定义警告"}
12
- {"timestamp":"2022-09-16 10:02:54.865","level":"ERROR","label":"logger","message":"自定义报错"}
@@ -1,12 +0,0 @@
1
- {"timestamp":"2022-09-16 10:03:14.816","level":"INFO","label":"logger","message":"自定义的日志输出"}
2
- {"timestamp":"2022-09-16 10:03:14.817","level":"WARN","label":"logger","message":"自定义警告"}
3
- {"timestamp":"2022-09-16 10:03:14.818","level":"ERROR","label":"logger","message":"自定义报错"}
4
- {"timestamp":"2022-09-16 10:07:58.560","level":"INFO","label":"logger","message":"自定义的日志输出"}
5
- {"timestamp":"2022-09-16 10:07:58.561","level":"WARN","label":"logger","message":"自定义警告"}
6
- {"timestamp":"2022-09-16 10:07:58.562","level":"ERROR","label":"logger","message":"自定义报错"}
7
- {"timestamp":"2022-09-16 10:08:35.374","level":"INFO","label":"logger","message":"自定义的日志输出"}
8
- {"timestamp":"2022-09-16 10:08:35.375","level":"WARN","label":"logger","message":"自定义警告"}
9
- {"timestamp":"2022-09-16 10:08:35.376","level":"ERROR","label":"logger","message":"自定义报错"}
10
- {"timestamp":"2022-09-16 10:12:28.386","level":"INFO","label":"logger","message":"自定义的日志输出"}
11
- {"timestamp":"2022-09-16 10:12:28.387","level":"WARN","label":"logger","message":"自定义警告"}
12
- {"timestamp":"2022-09-16 10:12:28.388","level":"ERROR","label":"logger","message":"自定义报错"}
@@ -1,12 +0,0 @@
1
- {"timestamp":"2022-09-16 10:12:35.326","level":"INFO","label":"logger","message":"自定义的日志输出"}
2
- {"timestamp":"2022-09-16 10:12:35.327","level":"WARN","label":"logger","message":"自定义警告"}
3
- {"timestamp":"2022-09-16 10:12:35.328","level":"ERROR","label":"logger","message":"自定义报错"}
4
- {"timestamp":"2022-09-16 10:35:28.78","level":"INFO","label":"logger","message":"自定义的日志输出"}
5
- {"timestamp":"2022-09-16 10:35:28.79","level":"WARN","label":"logger","message":"自定义警告"}
6
- {"timestamp":"2022-09-16 10:35:28.80","level":"ERROR","label":"logger","message":"自定义报错"}
7
- {"timestamp":"2022-09-22 14:02:49.406","level":"INFO","label":"logger","message":"自定义的日志输出"}
8
- {"timestamp":"2022-09-22 14:02:49.407","level":"WARN","label":"logger","message":"自定义警告"}
9
- {"timestamp":"2022-09-22 14:02:49.408","level":"ERROR","label":"logger","message":"自定义报错"}
10
- {"timestamp":"2022-09-22 14:03:17.226","level":"INFO","label":"logger","message":"自定义的日志输出"}
11
- {"timestamp":"2022-09-22 14:03:17.227","level":"WARN","label":"logger","message":"自定义警告"}
12
- {"timestamp":"2022-09-22 14:03:17.228","level":"ERROR","label":"logger","message":"自定义报错"}
@@ -1,12 +0,0 @@
1
- {"timestamp":"2022-09-22 14:03:39.607","level":"INFO","label":"logger","message":"自定义的日志输出"}
2
- {"timestamp":"2022-09-22 14:03:39.608","level":"WARN","label":"logger","message":"自定义警告"}
3
- {"timestamp":"2022-09-22 14:03:39.609","level":"ERROR","label":"logger","message":"自定义报错"}
4
- {"timestamp":"2022-09-22 14:05:29.436","level":"INFO","label":"logger","message":"自定义的日志输出"}
5
- {"timestamp":"2022-09-22 14:05:29.437","level":"WARN","label":"logger","message":"自定义警告"}
6
- {"timestamp":"2022-09-22 14:05:29.438","level":"ERROR","label":"logger","message":"自定义报错"}
7
- {"timestamp":"2022-12-13 17:56:56.447","level":"INFO","label":"logger","message":"自定义的日志输出"}
8
- {"timestamp":"2022-12-13 17:56:56.448","level":"WARN","label":"logger","message":"自定义警告"}
9
- {"timestamp":"2022-12-13 17:56:56.449","level":"ERROR","label":"logger","message":"自定义报错"}
10
- {"timestamp":"2022-12-13 17:57:38.950","level":"INFO","label":"logger","message":"自定义的日志输出"}
11
- {"timestamp":"2022-12-13 17:57:38.952","level":"WARN","label":"logger","message":"自定义警告"}
12
- {"timestamp":"2022-12-13 17:57:38.953","level":"ERROR","label":"logger","message":"自定义报错"}
@@ -1,6 +0,0 @@
1
- {"timestamp":"2022-12-13 17:59:51.490","level":"INFO","label":"logger","message":"自定义的日志输出"}
2
- {"timestamp":"2022-12-13 17:59:51.491","level":"WARN","label":"logger","message":"自定义警告"}
3
- {"timestamp":"2022-12-13 17:59:51.492","level":"ERROR","label":"logger","message":"自定义报错"}
4
- {"timestamp":"2022-12-13 18:00:45.217","level":"INFO","label":"logger","message":"自定义的日志输出"}
5
- {"timestamp":"2022-12-13 18:00:45.218","level":"WARN","label":"logger","message":"自定义警告"}
6
- {"timestamp":"2022-12-13 18:00:45.219","level":"ERROR","label":"logger","message":"自定义报错"}
@@ -1,12 +0,0 @@
1
- {"timestamp":"2022-09-09 17:28:57.392","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
2
- {"timestamp":"2022-09-09 17:28:57.393","level":"INFO","label":"sys","message":"Call the method before the application stops"}
3
- {"timestamp":"2022-09-09 17:29:02.396","level":"INFO","label":"sys","message":"application stop"}
4
- {"timestamp":"2022-09-16 10:12:35.208","level":"INFO","label":"sys","message":"Start scanning component"}
5
- {"timestamp":"2022-09-16 10:12:35.311","level":"INFO","label":"sys","message":"Complete component scan"}
6
- {"timestamp":"2022-09-16 10:12:35.313","level":"INFO","label":"sys","message":"Call application initialization method"}
7
- {"timestamp":"2022-09-16 10:12:35.315","level":"INFO","label":"sys","message":"start server app is run"}
8
- {"timestamp":"2022-09-16 10:12:35.316","level":"INFO","label":"sys","message":"version 1.0.0"}
9
- {"timestamp":"2022-09-16 10:12:53.876","level":"INFO","label":"sys","message":"sysConfig hot update----D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\resource\\application.yml"}
10
- {"timestamp":"2022-09-16 10:12:53.895","level":"INFO","label":"sys","message":"sysConfig hot update----D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\resource\\application.yml"}
11
- {"timestamp":"2022-09-16 10:13:24.226","level":"INFO","label":"sys","message":"sysConfig hot update----D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\resource\\application.yml"}
12
- {"timestamp":"2022-09-16 10:13:36.169","level":"INFO","label":"sys","message":"sysConfig hot update----D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\resource\\application.yml"}
@@ -1,8 +0,0 @@
1
- {"timestamp":"2022-09-13 09:54:13.551","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
2
- {"timestamp":"2022-09-13 09:54:13.552","level":"INFO","label":"sys","message":"Call the method before the application stops"}
3
- {"timestamp":"2022-09-13 09:54:18.555","level":"INFO","label":"sys","message":"application stop"}
4
- {"timestamp":"2022-09-16 10:15:27.08","level":"INFO","label":"sys","message":"hot update---D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\service\\HelloService.ts"}
5
- {"timestamp":"2022-09-16 10:15:27.12","level":"INFO","label":"sys","message":"hot update---D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\service\\HelloService.ts"}
6
- {"timestamp":"2022-12-13 17:56:58.473","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
7
- {"timestamp":"2022-12-13 17:56:58.474","level":"INFO","label":"sys","message":"Call the method before the application stops"}
8
- {"timestamp":"2022-12-13 17:57:03.482","level":"INFO","label":"sys","message":"application stop"}
@@ -1,3 +0,0 @@
1
- {"timestamp":"2022-12-21 17:57:13.569","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
2
- {"timestamp":"2022-12-21 17:57:13.570","level":"INFO","label":"sys","message":"Call the method before the application stops"}
3
- {"timestamp":"2022-12-21 17:57:18.583","level":"INFO","label":"sys","message":"application stop"}
@@ -1,13 +0,0 @@
1
- {"timestamp":"2022-12-13 17:59:53.504","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
2
- {"timestamp":"2022-12-13 17:59:53.505","level":"INFO","label":"sys","message":"Call the method before the application stops"}
3
- {"timestamp":"2022-12-13 17:59:58.508","level":"INFO","label":"sys","message":"application stop"}
4
- {"timestamp":"2022-12-13 18:00:47.239","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
5
- {"timestamp":"2022-12-13 18:00:47.240","level":"INFO","label":"sys","message":"Call the method before the application stops"}
6
- {"timestamp":"2022-12-13 18:00:52.243","level":"INFO","label":"sys","message":"application stop"}
7
- {"timestamp":"2022-12-21 17:57:11.428","level":"INFO","label":"sys","message":"Start scanning component"}
8
- {"timestamp":"2022-12-21 17:57:11.531","level":"INFO","label":"sys","message":"Complete component scan"}
9
- {"timestamp":"2022-12-21 17:57:11.533","level":"INFO","label":"sys","message":"Call application initialization method"}
10
- {"timestamp":"2022-12-21 17:57:11.535","level":"INFO","label":"sys","message":"start server app is run"}
11
- {"timestamp":"2022-12-21 17:57:11.535","level":"INFO","label":"sys","message":"version 1.0.0"}
12
- {"timestamp":"2022-12-21 17:57:11.567","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [notFound] ","stack":"Error: Unsatisfied dependency expressed through [notFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\AliasInjection.ts:16:27)\n at NotFoundController.getNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:14:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:89:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
13
- {"timestamp":"2022-12-21 17:57:11.583","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [autoNotFound] ","stack":"Error: Unsatisfied dependency expressed through [autoNotFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at NotFoundController.getAutoNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:18:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:95:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
@@ -1,15 +0,0 @@
1
- {"timestamp":"2022-09-02 14:15:07.567","level":"INFO","label":"sys","message":"Start scanning component"}
2
- {"timestamp":"2022-09-02 14:15:07.985","level":"INFO","label":"sys","message":"Complete component scan"}
3
- {"timestamp":"2022-09-02 14:15:07.988","level":"INFO","label":"sys","message":"Call application initialization method"}
4
- {"timestamp":"2022-09-02 14:15:07.990","level":"INFO","label":"sys","message":"start server app is run"}
5
- {"timestamp":"2022-09-02 14:15:07.991","level":"INFO","label":"sys","message":"version 1.0.0"}
6
- {"timestamp":"2022-09-02 14:15:08.09","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
7
- {"timestamp":"2022-09-02 14:15:08.10","level":"INFO","label":"sys","message":"Call the method before the application stops"}
8
- {"timestamp":"2022-09-02 14:15:13.18","level":"INFO","label":"sys","message":"application stop"}
9
- {"timestamp":"2022-09-02 14:15:50.613","level":"INFO","label":"sys","message":"Start scanning component"}
10
- {"timestamp":"2022-09-02 14:15:51.17","level":"INFO","label":"sys","message":"Complete component scan"}
11
- {"timestamp":"2022-09-02 14:15:51.19","level":"INFO","label":"sys","message":"Call application initialization method"}
12
- {"timestamp":"2022-09-02 14:15:51.21","level":"INFO","label":"sys","message":"start server app is run"}
13
- {"timestamp":"2022-09-02 14:15:51.22","level":"INFO","label":"sys","message":"version 1.0.0"}
14
- {"timestamp":"2022-09-02 14:15:51.32","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
15
- {"timestamp":"2022-09-02 14:15:51.33","level":"INFO","label":"sys","message":"Call the method before the application stops"}
@@ -1,9 +0,0 @@
1
- {"timestamp":"2022-09-02 14:14:56.968","level":"INFO","label":"sys","message":"application stop"}
2
- {"timestamp":"2022-09-02 14:15:56.37","level":"INFO","label":"sys","message":"application stop"}
3
- {"timestamp":"2022-09-02 14:16:46.532","level":"INFO","label":"sys","message":"Start scanning component"}
4
- {"timestamp":"2022-09-02 14:16:46.979","level":"INFO","label":"sys","message":"Complete component scan"}
5
- {"timestamp":"2022-09-02 14:16:46.981","level":"INFO","label":"sys","message":"Call application initialization method"}
6
- {"timestamp":"2022-09-02 14:16:46.983","level":"INFO","label":"sys","message":"start server app is run"}
7
- {"timestamp":"2022-09-02 14:16:46.983","level":"INFO","label":"sys","message":"version 1.0.0"}
8
- {"timestamp":"2022-09-02 14:16:46.993","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [notFound] ","stack":"Error: Unsatisfied dependency expressed through [notFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\AliasInjection.ts:16:27)\n at NotFoundController.getNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:14:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:88:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
9
- {"timestamp":"2022-09-02 14:16:47.01","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [autoNotFound] ","stack":"Error: Unsatisfied dependency expressed through [autoNotFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at NotFoundController.getAutoNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:18:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:94:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
@@ -1,10 +0,0 @@
1
- {"timestamp":"2022-09-02 14:16:47.18","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
2
- {"timestamp":"2022-09-02 14:16:47.19","level":"INFO","label":"sys","message":"Call the method before the application stops"}
3
- {"timestamp":"2022-09-02 14:16:52.24","level":"INFO","label":"sys","message":"application stop"}
4
- {"timestamp":"2022-09-02 14:17:35.511","level":"INFO","label":"sys","message":"Start scanning component"}
5
- {"timestamp":"2022-09-02 14:17:35.602","level":"INFO","label":"sys","message":"Complete component scan"}
6
- {"timestamp":"2022-09-02 14:17:35.604","level":"INFO","label":"sys","message":"Call application initialization method"}
7
- {"timestamp":"2022-09-02 14:17:35.606","level":"INFO","label":"sys","message":"start server app is run"}
8
- {"timestamp":"2022-09-02 14:17:35.607","level":"INFO","label":"sys","message":"version 1.0.0"}
9
- {"timestamp":"2022-09-02 14:17:35.630","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [notFound] ","stack":"Error: Unsatisfied dependency expressed through [notFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\AliasInjection.ts:16:27)\n at NotFoundController.getNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:14:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:88:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
10
- {"timestamp":"2022-09-02 14:17:35.638","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [autoNotFound] ","stack":"Error: Unsatisfied dependency expressed through [autoNotFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at NotFoundController.getAutoNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:18:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:94:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
@@ -1,15 +0,0 @@
1
- {"timestamp":"2022-09-09 11:20:22.334","level":"INFO","label":"sys","message":"Start scanning component"}
2
- {"timestamp":"2022-09-09 11:20:22.464","level":"INFO","label":"sys","message":"Complete component scan"}
3
- {"timestamp":"2022-09-09 11:20:22.466","level":"INFO","label":"sys","message":"Call application initialization method"}
4
- {"timestamp":"2022-09-09 11:20:22.469","level":"INFO","label":"sys","message":"start server app is run"}
5
- {"timestamp":"2022-09-09 11:20:22.470","level":"INFO","label":"sys","message":"version 1.0.0"}
6
- {"timestamp":"2022-09-09 11:20:24.495","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
7
- {"timestamp":"2022-09-09 11:20:24.496","level":"INFO","label":"sys","message":"Call the method before the application stops"}
8
- {"timestamp":"2022-09-09 11:20:29.505","level":"INFO","label":"sys","message":"application stop"}
9
- {"timestamp":"2022-09-09 11:31:43.06","level":"INFO","label":"sys","message":"Start scanning component"}
10
- {"timestamp":"2022-09-09 11:31:43.133","level":"INFO","label":"sys","message":"Complete component scan"}
11
- {"timestamp":"2022-09-09 11:31:43.135","level":"INFO","label":"sys","message":"Call application initialization method"}
12
- {"timestamp":"2022-09-09 11:31:43.138","level":"INFO","label":"sys","message":"start server app is run"}
13
- {"timestamp":"2022-09-09 11:31:43.139","level":"INFO","label":"sys","message":"version 1.0.0"}
14
- {"timestamp":"2022-09-09 11:31:45.168","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
15
- {"timestamp":"2022-09-09 11:31:45.169","level":"INFO","label":"sys","message":"Call the method before the application stops"}
@@ -1,11 +0,0 @@
1
- {"timestamp":"2022-09-02 14:17:37.629","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
2
- {"timestamp":"2022-09-02 14:17:37.630","level":"INFO","label":"sys","message":"Call the method before the application stops"}
3
- {"timestamp":"2022-09-02 14:17:42.638","level":"INFO","label":"sys","message":"application stop"}
4
- {"timestamp":"2022-09-09 11:31:50.173","level":"INFO","label":"sys","message":"application stop"}
5
- {"timestamp":"2022-09-09 17:28:55.254","level":"INFO","label":"sys","message":"Start scanning component"}
6
- {"timestamp":"2022-09-09 17:28:55.348","level":"INFO","label":"sys","message":"Complete component scan"}
7
- {"timestamp":"2022-09-09 17:28:55.350","level":"INFO","label":"sys","message":"Call application initialization method"}
8
- {"timestamp":"2022-09-09 17:28:55.353","level":"INFO","label":"sys","message":"start server app is run"}
9
- {"timestamp":"2022-09-09 17:28:55.353","level":"INFO","label":"sys","message":"version 1.0.0"}
10
- {"timestamp":"2022-09-09 17:28:55.378","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [notFound] ","stack":"Error: Unsatisfied dependency expressed through [notFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\AliasInjection.ts:16:27)\n at NotFoundController.getNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:14:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:91:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
11
- {"timestamp":"2022-09-09 17:28:55.386","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [autoNotFound] ","stack":"Error: Unsatisfied dependency expressed through [autoNotFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at NotFoundController.getAutoNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:18:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:97:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
@@ -1,10 +0,0 @@
1
- {"timestamp":"2022-09-13 09:53:52.25","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
2
- {"timestamp":"2022-09-13 09:53:52.26","level":"INFO","label":"sys","message":"Call the method before the application stops"}
3
- {"timestamp":"2022-09-13 09:53:57.36","level":"INFO","label":"sys","message":"application stop"}
4
- {"timestamp":"2022-09-13 09:54:11.426","level":"INFO","label":"sys","message":"Start scanning component"}
5
- {"timestamp":"2022-09-13 09:54:11.514","level":"INFO","label":"sys","message":"Complete component scan"}
6
- {"timestamp":"2022-09-13 09:54:11.516","level":"INFO","label":"sys","message":"Call application initialization method"}
7
- {"timestamp":"2022-09-13 09:54:11.518","level":"INFO","label":"sys","message":"start server app is run"}
8
- {"timestamp":"2022-09-13 09:54:11.518","level":"INFO","label":"sys","message":"version 1.0.0"}
9
- {"timestamp":"2022-09-13 09:54:11.539","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [notFound] ","stack":"Error: Unsatisfied dependency expressed through [notFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\AliasInjection.ts:16:27)\n at NotFoundController.getNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:14:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:88:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
10
- {"timestamp":"2022-09-13 09:54:11.547","level":"ERROR","label":"sys","message":"Unsatisfied dependency expressed through [autoNotFound] ","stack":"Error: Unsatisfied dependency expressed through [autoNotFound] \n at NotFoundController.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at NotFoundController.getAutoNotFound (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\controller\\NotFoundController.ts:18:15)\n at Context.<anonymous> (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\example\\simple\\app.ts:94:13)\n at callFn (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:366:21)\n at Test.Runnable.run (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runnable.js:354:5)\n at Runner.runTest (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:678:10)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:801:12\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:593:14)\n at D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:603:7\n at next (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:486:14)\n at Immediate._onImmediate (D:\\code\\fast-car\\fast-car\\node_modules\\mocha\\lib\\runner.js:571:5)\n at processImmediate (node:internal/timers:466:21)\n at process.topLevelDomainCallback (node:domain:152:15)\n at process.callbackTrampoline (node:internal/async_hooks:128:24)"}
File without changes