@fastcar/core 0.2.40 → 0.2.42

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastcar/core",
3
- "version": "0.2.40",
3
+ "version": "0.2.42",
4
4
  "homepage": "https://github.com/williamDazhangyu/fast-car",
5
5
  "main": "target/index.js",
6
6
  "author": "william_zhong",
@@ -25,7 +25,7 @@ import { ProcessType } from "./type/ProcessType";
25
25
  import { FileHotterDesc } from "./type/FileHotterDesc";
26
26
  import { LifeCycleType } from "./annotation/lifeCycle/AddLifeCycleItem";
27
27
  import { WinstonLoggerType } from "./type/WinstonLoggerType";
28
- import { Log } from "./annotation";
28
+ import Log from "./annotation/stereotype/Log";
29
29
 
30
30
  @Component
31
31
  class FastCarApplication extends Events {
@@ -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);
@@ -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
  };
@@ -29,7 +29,7 @@ const Component_1 = require("./annotation/stereotype/Component");
29
29
  const WinstonLogger_1 = require("./model/WinstonLogger");
30
30
  const winston = require("winston");
31
31
  const DateUtil_1 = require("./utils/DateUtil");
32
- const annotation_1 = require("./annotation");
32
+ const Log_1 = require("./annotation/stereotype/Log");
33
33
  let FastCarApplication = FastCarApplication_1 = class FastCarApplication extends Events {
34
34
  constructor() {
35
35
  super();
@@ -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);
@@ -657,7 +665,7 @@ let FastCarApplication = FastCarApplication_1 = class FastCarApplication extends
657
665
  }
658
666
  };
659
667
  __decorate([
660
- (0, annotation_1.Log)("sys"),
668
+ (0, Log_1.default)("sys"),
661
669
  __metadata("design:type", Object)
662
670
  ], FastCarApplication.prototype, "sysLogger", void 0);
663
671
  FastCarApplication = FastCarApplication_1 = __decorate([
@@ -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,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