@fastcar/core 0.2.41 → 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 +1 -1
- package/src/FastCarApplication.ts +15 -4
- package/src/config/ApplicationConfig.ts +4 -0
- package/target/FastCarApplication.js +12 -4
- package/test/example/logs/[fastcar-server] logger.log +3 -9
- package/test/example/logs/[fastcar-server] sys.log +8 -8
- package/test/example/logs/{sys13.log → sys.log} +2 -5
- package/test/example/resource/application.yml +3 -0
- package/test/example/simple/noclude/excludeApp.ts +6 -0
- package/test/example/logs/[fastcar-server] sys1.log +0 -8
- package/test/example/logs/logger.log +0 -12
- package/test/example/logs/logger1.log +0 -12
- package/test/example/logs/logger2.log +0 -12
- package/test/example/logs/logger3.log +0 -12
- package/test/example/logs/logger4.log +0 -12
- package/test/example/logs/logger5.log +0 -12
- package/test/example/logs/logger6.log +0 -6
- package/test/example/logs/sys10.log +0 -12
- package/test/example/logs/sys11.log +0 -8
- package/test/example/logs/sys12.log +0 -3
- package/test/example/logs/sys3.log +0 -13
- package/test/example/logs/sys4.log +0 -15
- package/test/example/logs/sys5.log +0 -9
- package/test/example/logs/sys6.log +0 -10
- package/test/example/logs/sys7.log +0 -15
- package/test/example/logs/sys8.log +0 -11
- package/test/example/logs/sys9.log +0 -10
- /package/test/example/logs/{app.log → sys1.log} +0 -0
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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);
|
|
@@ -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
|
-
|
|
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 (
|
|
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);
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
{"timestamp":"
|
|
2
|
-
{"timestamp":"
|
|
3
|
-
{"timestamp":"
|
|
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":"
|
|
2
|
-
{"timestamp":"
|
|
3
|
-
{"timestamp":"
|
|
4
|
-
{"timestamp":"
|
|
5
|
-
{"timestamp":"
|
|
6
|
-
{"timestamp":"
|
|
7
|
-
{"timestamp":"
|
|
8
|
-
{"timestamp":"
|
|
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":"
|
|
2
|
-
{"timestamp":"
|
|
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,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
|