@fastcar/core 0.2.61 → 0.2.63
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 +30 -9
- package/src/utils/ValidationUtil.ts +1 -3
- package/target/FastCarApplication.js +708 -692
- package/target/annotation/Application.js +45 -45
- package/target/annotation/ExceptionMonitor.js +16 -16
- package/target/annotation/bind/AddRequireModule.js +21 -21
- package/target/annotation/bind/AliasInjection.js +23 -23
- package/target/annotation/bind/Autowired.js +13 -13
- package/target/annotation/bind/CallDependency.js +23 -23
- package/target/annotation/data/DBType.js +11 -11
- package/target/annotation/data/DS.js +54 -54
- package/target/annotation/data/DSIndex.js +9 -9
- package/target/annotation/data/Entity.js +10 -10
- package/target/annotation/data/Field.js +18 -18
- package/target/annotation/data/PrimaryKey.js +9 -9
- package/target/annotation/data/SqlSession.js +9 -9
- package/target/annotation/data/Table.js +35 -35
- package/target/annotation/data/Transactional.js +52 -52
- package/target/annotation/env/ApplicationSetting.js +25 -25
- package/target/annotation/env/BaseFilePath.js +14 -14
- package/target/annotation/env/BaseName.js +9 -9
- package/target/annotation/env/BasePath.js +14 -14
- package/target/annotation/env/ENV.js +10 -10
- package/target/annotation/env/ResourcePath.js +9 -9
- package/target/annotation/lifeCycle/AddLifeCycleItem.js +18 -18
- package/target/annotation/lifeCycle/ApplicationDestory.js +15 -15
- package/target/annotation/lifeCycle/ApplicationInit.js +15 -15
- package/target/annotation/lifeCycle/ApplicationRunner.js +7 -7
- package/target/annotation/lifeCycle/ApplicationStart.js +24 -24
- package/target/annotation/lifeCycle/ApplicationStop.js +20 -20
- package/target/annotation/property/Deprecate.js +19 -19
- package/target/annotation/property/NotImplemented.js +8 -8
- package/target/annotation/property/Override.js +7 -7
- package/target/annotation/property/Readonly.js +16 -16
- package/target/annotation/scan/ComponentInjection.js +21 -21
- package/target/annotation/scan/ComponentScan.js +9 -9
- package/target/annotation/scan/ComponentScanExclusion.js +25 -25
- package/target/annotation/scan/ComponentScanMust.js +25 -25
- package/target/annotation/scan/Hotter.js +8 -8
- package/target/annotation/stereotype/BeanName.js +11 -11
- package/target/annotation/stereotype/Component.js +8 -8
- package/target/annotation/stereotype/Configure.js +14 -14
- package/target/annotation/stereotype/Controller.js +9 -9
- package/target/annotation/stereotype/Injection.js +12 -12
- package/target/annotation/stereotype/Log.js +17 -17
- package/target/annotation/stereotype/Repository.js +9 -9
- package/target/annotation/stereotype/Service.js +9 -9
- package/target/annotation/valid/AddChildValid.js +56 -56
- package/target/annotation/valid/CustomType.js +11 -11
- package/target/annotation/valid/DefaultVal.js +10 -10
- package/target/annotation/valid/NotNull.js +8 -8
- package/target/annotation/valid/Rule.js +100 -100
- package/target/annotation/valid/Size.js +10 -10
- package/target/annotation/valid/Type.js +10 -10
- package/target/annotation/valid/ValidCustom.js +17 -17
- package/target/annotation/valid/ValidForm.js +133 -133
- package/target/annotation.js +108 -108
- package/target/config/ApplicationConfig.js +2 -2
- package/target/config/SysConfig.js +19 -19
- package/target/constant/AppStatusEnum.js +9 -9
- package/target/constant/BootPriority.js +11 -11
- package/target/constant/CommonConstant.js +18 -18
- package/target/constant/ComponentKind.js +11 -11
- package/target/constant/DataTypes.js +19 -19
- package/target/constant/FastCarMetaData.js +31 -31
- package/target/constant/LifeCycleModule.js +9 -9
- package/target/db.js +49 -49
- package/target/index.js +21 -21
- package/target/interface/ApplicationHook.js +2 -2
- package/target/interface/ApplicationInterface.js +2 -2
- package/target/interface/ApplicationRunnerService.js +2 -2
- package/target/interface/DataSourceManager.js +2 -2
- package/target/interface/Logger.js +5 -5
- package/target/model/BaseMapper.js +98 -98
- package/target/model/DataMap.js +87 -87
- package/target/model/FormRuleModel.js +2 -2
- package/target/model/ValidError.js +5 -5
- package/target/model/WinstonLogger.js +96 -96
- package/target/type/ComponentDesc.js +2 -2
- package/target/type/DesignMeta.js +15 -15
- package/target/type/FileHotterDesc.js +2 -2
- package/target/type/MapperType.js +2 -2
- package/target/type/ProcessType.js +2 -2
- package/target/type/SqlError.js +5 -5
- package/target/type/WinstonLoggerType.js +9 -9
- package/target/utils/ClassLoader.js +65 -65
- package/target/utils/ClassUtils.js +35 -35
- package/target/utils/CryptoUtil.js +86 -86
- package/target/utils/DataFormat.js +88 -88
- package/target/utils/DateUtil.js +71 -71
- package/target/utils/FileUtil.js +153 -153
- package/target/utils/FormatStr.js +14 -14
- package/target/utils/IPUtils.js +34 -34
- package/target/utils/Id.js +9 -9
- package/target/utils/Mix.js +62 -62
- package/target/utils/ReflectUtil.js +22 -22
- package/target/utils/TypeUtil.js +53 -53
- package/target/utils/ValidationUtil.js +123 -124
- package/target/utils.js +25 -25
- package/test/unit/decorators-test.ts +3 -3
- package/target/src/FastCarApplication.js +0 -704
- package/target/src/annotation/Application.js +0 -45
- package/target/src/annotation/ExceptionMonitor.js +0 -16
- package/target/src/annotation/bind/AddRequireModule.js +0 -21
- package/target/src/annotation/bind/AliasInjection.js +0 -23
- package/target/src/annotation/bind/Autowired.js +0 -13
- package/target/src/annotation/bind/CallDependency.js +0 -23
- package/target/src/annotation/data/DBType.js +0 -11
- package/target/src/annotation/data/DS.js +0 -54
- package/target/src/annotation/data/DSIndex.js +0 -9
- package/target/src/annotation/data/Entity.js +0 -10
- package/target/src/annotation/data/Field.js +0 -18
- package/target/src/annotation/data/PrimaryKey.js +0 -9
- package/target/src/annotation/data/SqlSession.js +0 -9
- package/target/src/annotation/data/Table.js +0 -35
- package/target/src/annotation/data/Transactional.js +0 -52
- package/target/src/annotation/env/ApplicationSetting.js +0 -25
- package/target/src/annotation/env/BaseFilePath.js +0 -14
- package/target/src/annotation/env/BaseName.js +0 -9
- package/target/src/annotation/env/BasePath.js +0 -14
- package/target/src/annotation/env/ENV.js +0 -10
- package/target/src/annotation/env/ResourcePath.js +0 -9
- package/target/src/annotation/lifeCycle/AddLifeCycleItem.js +0 -18
- package/target/src/annotation/lifeCycle/ApplicationDestory.js +0 -15
- package/target/src/annotation/lifeCycle/ApplicationInit.js +0 -15
- package/target/src/annotation/lifeCycle/ApplicationRunner.js +0 -7
- package/target/src/annotation/lifeCycle/ApplicationStart.js +0 -24
- package/target/src/annotation/lifeCycle/ApplicationStop.js +0 -20
- package/target/src/annotation/property/Deprecate.js +0 -19
- package/target/src/annotation/property/NotImplemented.js +0 -8
- package/target/src/annotation/property/Override.js +0 -7
- package/target/src/annotation/property/Readonly.js +0 -16
- package/target/src/annotation/scan/ComponentInjection.js +0 -21
- package/target/src/annotation/scan/ComponentScan.js +0 -9
- package/target/src/annotation/scan/ComponentScanExclusion.js +0 -25
- package/target/src/annotation/scan/ComponentScanMust.js +0 -25
- package/target/src/annotation/scan/Hotter.js +0 -8
- package/target/src/annotation/stereotype/BeanName.js +0 -11
- package/target/src/annotation/stereotype/Component.js +0 -8
- package/target/src/annotation/stereotype/Configure.js +0 -14
- package/target/src/annotation/stereotype/Controller.js +0 -9
- package/target/src/annotation/stereotype/Injection.js +0 -12
- package/target/src/annotation/stereotype/Log.js +0 -22
- package/target/src/annotation/stereotype/Repository.js +0 -9
- package/target/src/annotation/stereotype/Service.js +0 -9
- package/target/src/annotation/valid/AddChildValid.js +0 -56
- package/target/src/annotation/valid/CustomType.js +0 -11
- package/target/src/annotation/valid/DefaultVal.js +0 -10
- package/target/src/annotation/valid/NotNull.js +0 -8
- package/target/src/annotation/valid/Rule.js +0 -100
- package/target/src/annotation/valid/Size.js +0 -10
- package/target/src/annotation/valid/Type.js +0 -10
- package/target/src/annotation/valid/ValidCustom.js +0 -17
- package/target/src/annotation/valid/ValidForm.js +0 -133
- package/target/src/annotation.js +0 -108
- package/target/src/config/ApplicationConfig.js +0 -2
- package/target/src/config/SysConfig.js +0 -19
- package/target/src/constant/AppStatusEnum.js +0 -9
- package/target/src/constant/BootPriority.js +0 -11
- package/target/src/constant/CommonConstant.js +0 -18
- package/target/src/constant/ComponentKind.js +0 -11
- package/target/src/constant/DataTypes.js +0 -19
- package/target/src/constant/FastCarMetaData.js +0 -31
- package/target/src/constant/LifeCycleModule.js +0 -9
- package/target/src/db.js +0 -49
- package/target/src/index.js +0 -21
- package/target/src/interface/ApplicationHook.js +0 -2
- package/target/src/interface/ApplicationInterface.js +0 -2
- package/target/src/interface/ApplicationRunnerService.js +0 -2
- package/target/src/interface/DataSourceManager.js +0 -2
- package/target/src/interface/Logger.js +0 -5
- package/target/src/model/BaseMapper.js +0 -103
- package/target/src/model/DataMap.js +0 -87
- package/target/src/model/FormRuleModel.js +0 -2
- package/target/src/model/ValidError.js +0 -5
- package/target/src/model/WinstonLogger.js +0 -97
- package/target/src/type/ComponentDesc.js +0 -2
- package/target/src/type/DesignMeta.js +0 -15
- package/target/src/type/FileHotterDesc.js +0 -2
- package/target/src/type/MapperType.js +0 -2
- package/target/src/type/ProcessType.js +0 -2
- package/target/src/type/SqlError.js +0 -5
- package/target/src/type/WinstonLoggerType.js +0 -9
- package/target/src/utils/ClassLoader.js +0 -65
- package/target/src/utils/ClassUtils.js +0 -35
- package/target/src/utils/CryptoUtil.js +0 -86
- package/target/src/utils/DataFormat.js +0 -88
- package/target/src/utils/DateUtil.js +0 -71
- package/target/src/utils/FileUtil.js +0 -153
- package/target/src/utils/FormatStr.js +0 -14
- package/target/src/utils/IPUtils.js +0 -34
- package/target/src/utils/Id.js +0 -9
- package/target/src/utils/Mix.js +0 -62
- package/target/src/utils/ReflectUtil.js +0 -22
- package/target/src/utils/TypeUtil.js +0 -53
- package/target/src/utils/ValidationUtil.js +0 -118
- package/target/src/utils.js +0 -25
- package/target/test/example/simple/app-test.js +0 -57
- package/target/test/example/simple/app.js +0 -116
- package/target/test/example/simple/component/StartRunner.js +0 -19
- package/target/test/example/simple/component/StopRunner.js +0 -23
- package/target/test/example/simple/config/EnvConfig.js +0 -16
- package/target/test/example/simple/config/HelloConfig.js +0 -16
- package/target/test/example/simple/config/HotConfig.js +0 -18
- package/target/test/example/simple/controller/AliasController.js +0 -17
- package/target/test/example/simple/controller/HelloController.js +0 -55
- package/target/test/example/simple/controller/NotFoundController.js +0 -36
- package/target/test/example/simple/noclude/excludeApp.js +0 -17
- package/target/test/example/simple/service/CallService.js +0 -24
- package/target/test/example/simple/service/HelloService.js +0 -18
- package/target/test/example/simple/service/LogService.js +0 -32
- package/target/test/multi/app.js +0 -29
- package/target/test/multi/service/aService.js +0 -33
- package/target/test/multi/service/bService.js +0 -35
- package/target/test/multi/service/cService.js +0 -40
- package/target/test/unit/dataMap-test.js +0 -35
- package/target/test/unit/decorators-test.js +0 -59
- package/target/test/unit/ds-test.js +0 -58
- package/target/test/unit/reflectMetadata-test.js +0 -27
- package/target/test/unit/valid-test.js +0 -99
- package/target/test/unit/winston-test.js +0 -15
- package/test/example/logs/fastcar-server.sys.log +0 -3
- package/test/example/logs/other-server.app.log +0 -0
- package/test/example/logs/other-server.sys.log +0 -0
- package/test/example/logs/other-server.sys1.log +0 -0
- package/test/example/logs/other-server.sys2.log +0 -0
- package/test/example/logs/other-server.sys3.log +0 -6
- package/test/example/logs/other-server.sys4.log +0 -0
- package/test/example/logs/other-server.sys5.log +0 -0
- package/test/example/logs/other-server.sys6.log +0 -2
- package/test/logs/logger.log +0 -0
- package/test/logs/sys.log +0 -227
package/test/logs/sys.log
DELETED
|
@@ -1,227 +0,0 @@
|
|
|
1
|
-
{"timestamp":"2022-12-07 15:10:36.45","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
2
|
-
{"timestamp":"2022-12-07 15:10:36.49","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
3
|
-
{"timestamp":"2022-12-07 15:10:36.49","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
4
|
-
{"timestamp":"2022-12-07 15:10:36.52","level":"INFO","label":"sys","message":"start server app is run"}
|
|
5
|
-
{"timestamp":"2022-12-07 15:10:36.52","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
6
|
-
{"timestamp":"2022-12-07 15:10:37.63","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
7
|
-
{"timestamp":"2022-12-07 15:14:46.897","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
8
|
-
{"timestamp":"2022-12-07 15:14:46.900","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
9
|
-
{"timestamp":"2022-12-07 15:14:46.901","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
10
|
-
{"timestamp":"2022-12-07 15:14:46.903","level":"INFO","label":"sys","message":"start server app is run"}
|
|
11
|
-
{"timestamp":"2022-12-07 15:14:46.904","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
12
|
-
{"timestamp":"2022-12-07 15:14:47.914","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
13
|
-
{"timestamp":"2022-12-07 15:17:44.929","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
14
|
-
{"timestamp":"2022-12-07 15:17:44.933","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
15
|
-
{"timestamp":"2022-12-07 15:17:44.934","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
16
|
-
{"timestamp":"2022-12-07 15:17:44.936","level":"INFO","label":"sys","message":"start server app is run"}
|
|
17
|
-
{"timestamp":"2022-12-07 15:17:44.937","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
18
|
-
{"timestamp":"2022-12-07 15:17:45.951","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
19
|
-
{"timestamp":"2022-12-07 15:19:21.675","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
20
|
-
{"timestamp":"2022-12-07 15:19:21.679","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
21
|
-
{"timestamp":"2022-12-07 15:19:21.679","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
22
|
-
{"timestamp":"2022-12-07 15:19:21.682","level":"INFO","label":"sys","message":"start server app is run"}
|
|
23
|
-
{"timestamp":"2022-12-07 15:19:21.682","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
24
|
-
{"timestamp":"2022-12-07 15:19:22.702","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
25
|
-
{"timestamp":"2022-12-07 15:23:48.413","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
26
|
-
{"timestamp":"2022-12-07 15:23:48.417","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
27
|
-
{"timestamp":"2022-12-07 15:23:48.417","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
28
|
-
{"timestamp":"2022-12-07 15:23:48.419","level":"INFO","label":"sys","message":"start server app is run"}
|
|
29
|
-
{"timestamp":"2022-12-07 15:23:48.420","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
30
|
-
{"timestamp":"2022-12-07 15:23:49.422","level":"ERROR","label":"sys","message":"Caught exception: Unsatisfied dependency expressed through [a] "}
|
|
31
|
-
{"timestamp":"2022-12-07 15:23:49.423","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
32
|
-
{"timestamp":"2022-12-07 15:23:49.429","level":"ERROR","label":"sys","message":"stack: Error: Unsatisfied dependency expressed through [a] \n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:14:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
33
|
-
{"timestamp":"2022-12-07 15:23:49.430","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
34
|
-
{"timestamp":"2022-12-07 15:24:44.932","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
35
|
-
{"timestamp":"2022-12-07 15:24:44.977","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
36
|
-
{"timestamp":"2022-12-07 15:24:44.977","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
37
|
-
{"timestamp":"2022-12-07 15:24:44.980","level":"INFO","label":"sys","message":"start server app is run"}
|
|
38
|
-
{"timestamp":"2022-12-07 15:24:44.980","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
39
|
-
{"timestamp":"2022-12-07 15:24:45.995","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
40
|
-
{"timestamp":"2022-12-07 15:25:20.32","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
41
|
-
{"timestamp":"2022-12-07 15:25:20.36","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
42
|
-
{"timestamp":"2022-12-07 15:25:20.36","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
43
|
-
{"timestamp":"2022-12-07 15:25:20.38","level":"INFO","label":"sys","message":"start server app is run"}
|
|
44
|
-
{"timestamp":"2022-12-07 15:25:20.39","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
45
|
-
{"timestamp":"2022-12-07 15:25:21.63","level":"ERROR","label":"sys","message":"Caught exception: Unsatisfied dependency expressed through [a] "}
|
|
46
|
-
{"timestamp":"2022-12-07 15:25:21.64","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
47
|
-
{"timestamp":"2022-12-07 15:25:21.70","level":"ERROR","label":"sys","message":"stack: Error: Unsatisfied dependency expressed through [a] \n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:14:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
48
|
-
{"timestamp":"2022-12-07 15:25:21.72","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
49
|
-
{"timestamp":"2022-12-07 15:25:40.204","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
50
|
-
{"timestamp":"2022-12-07 15:25:40.208","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
51
|
-
{"timestamp":"2022-12-07 15:25:40.208","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
52
|
-
{"timestamp":"2022-12-07 15:25:40.210","level":"INFO","label":"sys","message":"start server app is run"}
|
|
53
|
-
{"timestamp":"2022-12-07 15:25:40.211","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
54
|
-
{"timestamp":"2022-12-07 15:25:41.223","level":"ERROR","label":"sys","message":"Caught exception: Unsatisfied dependency expressed through [a] "}
|
|
55
|
-
{"timestamp":"2022-12-07 15:25:41.224","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
56
|
-
{"timestamp":"2022-12-07 15:25:41.229","level":"ERROR","label":"sys","message":"stack: Error: Unsatisfied dependency expressed through [a] \n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:14:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
57
|
-
{"timestamp":"2022-12-07 15:25:41.231","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
58
|
-
{"timestamp":"2022-12-07 15:26:00.248","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
59
|
-
{"timestamp":"2022-12-07 15:26:00.252","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
60
|
-
{"timestamp":"2022-12-07 15:26:00.253","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
61
|
-
{"timestamp":"2022-12-07 15:26:00.255","level":"INFO","label":"sys","message":"start server app is run"}
|
|
62
|
-
{"timestamp":"2022-12-07 15:26:00.256","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
63
|
-
{"timestamp":"2022-12-07 15:28:29.482","level":"ERROR","label":"sys","message":"Caught exception: Unsatisfied dependency expressed through [a] "}
|
|
64
|
-
{"timestamp":"2022-12-07 15:28:29.484","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
65
|
-
{"timestamp":"2022-12-07 15:28:29.485","level":"ERROR","label":"sys","message":"stack: Error: Unsatisfied dependency expressed through [a] \n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:14:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
66
|
-
{"timestamp":"2022-12-07 15:28:29.522","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
67
|
-
{"timestamp":"2022-12-07 15:28:50.948","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
68
|
-
{"timestamp":"2022-12-07 15:28:50.952","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
69
|
-
{"timestamp":"2022-12-07 15:28:50.953","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
70
|
-
{"timestamp":"2022-12-07 15:28:50.955","level":"INFO","label":"sys","message":"start server app is run"}
|
|
71
|
-
{"timestamp":"2022-12-07 15:28:50.956","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
72
|
-
{"timestamp":"2022-12-07 15:28:54.272","level":"ERROR","label":"sys","message":"Caught exception: Unsatisfied dependency expressed through [a] "}
|
|
73
|
-
{"timestamp":"2022-12-07 15:28:54.273","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
74
|
-
{"timestamp":"2022-12-07 15:28:54.279","level":"ERROR","label":"sys","message":"stack: Error: Unsatisfied dependency expressed through [a] \n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:14:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
75
|
-
{"timestamp":"2022-12-07 15:28:54.339","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
76
|
-
{"timestamp":"2022-12-07 15:29:02.276","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
77
|
-
{"timestamp":"2022-12-07 15:29:02.279","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
78
|
-
{"timestamp":"2022-12-07 15:29:02.280","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
79
|
-
{"timestamp":"2022-12-07 15:29:02.282","level":"INFO","label":"sys","message":"start server app is run"}
|
|
80
|
-
{"timestamp":"2022-12-07 15:29:02.283","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
81
|
-
{"timestamp":"2022-12-07 15:29:54.269","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
82
|
-
{"timestamp":"2022-12-07 15:29:54.273","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
83
|
-
{"timestamp":"2022-12-07 15:29:54.274","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
84
|
-
{"timestamp":"2022-12-07 15:29:54.277","level":"INFO","label":"sys","message":"start server app is run"}
|
|
85
|
-
{"timestamp":"2022-12-07 15:29:54.277","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
86
|
-
{"timestamp":"2022-12-07 15:31:41.234","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
87
|
-
{"timestamp":"2022-12-07 15:31:41.238","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
88
|
-
{"timestamp":"2022-12-07 15:31:41.239","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
89
|
-
{"timestamp":"2022-12-07 15:31:41.241","level":"INFO","label":"sys","message":"start server app is run"}
|
|
90
|
-
{"timestamp":"2022-12-07 15:31:41.242","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
91
|
-
{"timestamp":"2022-12-07 15:36:52.628","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
92
|
-
{"timestamp":"2022-12-07 15:36:52.632","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
93
|
-
{"timestamp":"2022-12-07 15:36:52.633","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
94
|
-
{"timestamp":"2022-12-07 15:36:52.635","level":"INFO","label":"sys","message":"start server app is run"}
|
|
95
|
-
{"timestamp":"2022-12-07 15:36:52.636","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
96
|
-
{"timestamp":"2022-12-07 15:37:18.789","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
97
|
-
{"timestamp":"2022-12-07 15:37:18.793","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
98
|
-
{"timestamp":"2022-12-07 15:37:18.794","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
99
|
-
{"timestamp":"2022-12-07 15:37:18.796","level":"INFO","label":"sys","message":"start server app is run"}
|
|
100
|
-
{"timestamp":"2022-12-07 15:37:18.797","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
101
|
-
{"timestamp":"2022-12-07 15:38:09.08","level":"ERROR","label":"sys","message":"Caught exception: Unsatisfied dependency expressed through [a] "}
|
|
102
|
-
{"timestamp":"2022-12-07 15:38:09.09","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
103
|
-
{"timestamp":"2022-12-07 15:38:09.15","level":"ERROR","label":"sys","message":"stack: Error: Unsatisfied dependency expressed through [a] \n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:15:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:20:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
104
|
-
{"timestamp":"2022-12-07 15:38:09.110","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
105
|
-
{"timestamp":"2022-12-07 15:39:14.939","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
106
|
-
{"timestamp":"2022-12-07 15:39:14.943","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
107
|
-
{"timestamp":"2022-12-07 15:39:14.944","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
108
|
-
{"timestamp":"2022-12-07 15:39:14.946","level":"INFO","label":"sys","message":"start server app is run"}
|
|
109
|
-
{"timestamp":"2022-12-07 15:39:14.947","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
110
|
-
{"timestamp":"2022-12-07 15:39:25.21","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
111
|
-
{"timestamp":"2022-12-07 15:44:27.495","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
112
|
-
{"timestamp":"2022-12-07 15:44:27.499","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
113
|
-
{"timestamp":"2022-12-07 15:44:27.500","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
114
|
-
{"timestamp":"2022-12-07 15:44:27.502","level":"INFO","label":"sys","message":"start server app is run"}
|
|
115
|
-
{"timestamp":"2022-12-07 15:44:27.503","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
116
|
-
{"timestamp":"2022-12-07 15:44:28.514","level":"ERROR","label":"sys","message":"Caught exception: The \"id\" argument must be of type string. Received an instance of APP"}
|
|
117
|
-
{"timestamp":"2022-12-07 15:44:28.515","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
118
|
-
{"timestamp":"2022-12-07 15:44:28.521","level":"ERROR","label":"sys","message":"stack: TypeError [ERR_INVALID_ARG_TYPE]: The \"id\" argument must be of type string. Received an instance of APP\n at new NodeError (node:internal/errors:371:5)\n at validateString (node:internal/validators:120:11)\n at Module.require (node:internal/modules/cjs/loader:998:3)\n at require (node:internal/modules/cjs/helpers:102:18)\n at APP.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:12:20)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:13:29)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
119
|
-
{"timestamp":"2022-12-07 15:44:28.522","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
120
|
-
{"timestamp":"2022-12-07 15:46:53.418","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
121
|
-
{"timestamp":"2022-12-07 15:46:53.422","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
122
|
-
{"timestamp":"2022-12-07 15:46:53.422","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
123
|
-
{"timestamp":"2022-12-07 15:46:53.425","level":"INFO","label":"sys","message":"start server app is run"}
|
|
124
|
-
{"timestamp":"2022-12-07 15:46:53.425","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
125
|
-
{"timestamp":"2022-12-07 15:47:02.197","level":"ERROR","label":"sys","message":"Caught exception: The \"id\" argument must be of type string. Received an instance of BService"}
|
|
126
|
-
{"timestamp":"2022-12-07 15:47:02.198","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
127
|
-
{"timestamp":"2022-12-07 15:47:02.205","level":"ERROR","label":"sys","message":"stack: TypeError [ERR_INVALID_ARG_TYPE]: The \"id\" argument must be of type string. Received an instance of BService\n at new NodeError (node:internal/errors:371:5)\n at validateString (node:internal/validators:120:11)\n at Module.require (node:internal/modules/cjs/loader:998:3)\n at require (node:internal/modules/cjs/helpers:102:18)\n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:16:21)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:17:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:20:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
128
|
-
{"timestamp":"2022-12-07 15:47:02.297","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
129
|
-
{"timestamp":"2022-12-07 15:48:13.488","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
130
|
-
{"timestamp":"2022-12-07 15:48:13.491","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
131
|
-
{"timestamp":"2022-12-07 15:48:13.492","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
132
|
-
{"timestamp":"2022-12-07 15:48:13.495","level":"INFO","label":"sys","message":"start server app is run"}
|
|
133
|
-
{"timestamp":"2022-12-07 15:48:13.495","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
134
|
-
{"timestamp":"2022-12-07 15:48:14.501","level":"ERROR","label":"sys","message":"Caught exception: The \"request\" argument must be of type string. Received an instance of BService"}
|
|
135
|
-
{"timestamp":"2022-12-07 15:48:14.502","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
136
|
-
{"timestamp":"2022-12-07 15:48:14.508","level":"ERROR","label":"sys","message":"stack: TypeError [ERR_INVALID_ARG_TYPE]: The \"request\" argument must be of type string. Received an instance of BService\n at new NodeError (node:internal/errors:371:5)\n at validateString (node:internal/validators:120:11)\n at Function.resolve (node:internal/modules/cjs/helpers:107:5)\n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:16:29)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:17:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:20:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
137
|
-
{"timestamp":"2022-12-07 15:48:14.509","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
138
|
-
{"timestamp":"2022-12-07 15:50:07.365","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
139
|
-
{"timestamp":"2022-12-07 15:50:07.369","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
140
|
-
{"timestamp":"2022-12-07 15:50:07.369","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
141
|
-
{"timestamp":"2022-12-07 15:50:07.372","level":"INFO","label":"sys","message":"start server app is run"}
|
|
142
|
-
{"timestamp":"2022-12-07 15:50:07.372","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
143
|
-
{"timestamp":"2022-12-07 15:52:22.461","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
144
|
-
{"timestamp":"2022-12-07 15:52:22.464","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
145
|
-
{"timestamp":"2022-12-07 15:52:22.465","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
146
|
-
{"timestamp":"2022-12-07 15:52:22.467","level":"INFO","label":"sys","message":"start server app is run"}
|
|
147
|
-
{"timestamp":"2022-12-07 15:52:22.468","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
148
|
-
{"timestamp":"2022-12-07 15:52:23.474","level":"ERROR","label":"sys","message":"Caught exception: Cannot find module './aService'\nRequire stack:\n- D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts\n- D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\Autowired.ts\n- D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation.ts\n- D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts"}
|
|
149
|
-
{"timestamp":"2022-12-07 15:52:23.474","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
150
|
-
{"timestamp":"2022-12-07 15:52:23.480","level":"ERROR","label":"sys","message":"stack: Error: Cannot find module './aService'\nRequire stack:\n- D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts\n- D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\Autowired.ts\n- D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation.ts\n- D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts\n at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)\n at Function.Module._resolveFilename.sharedData.moduleResolveFilenameHook.installedValue [as _resolveFilename] (D:\\code\\fast-car\\fast-car\\node_modules\\@cspotcode\\source-map-support\\source-map-support.js:679:30)\n at Function.Module._load (node:internal/modules/cjs/loader:778:27)\n at Module.require (node:internal/modules/cjs/loader:1005:19)\n at require (node:internal/modules/cjs/helpers:102:18)\n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:18:21)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:17:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:20:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)"}
|
|
151
|
-
{"timestamp":"2022-12-07 15:52:23.482","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
152
|
-
{"timestamp":"2022-12-07 15:53:12.455","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
153
|
-
{"timestamp":"2022-12-07 15:53:12.458","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
154
|
-
{"timestamp":"2022-12-07 15:53:12.459","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
155
|
-
{"timestamp":"2022-12-07 15:53:12.461","level":"INFO","label":"sys","message":"start server app is run"}
|
|
156
|
-
{"timestamp":"2022-12-07 15:53:12.462","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
157
|
-
{"timestamp":"2022-12-07 15:55:32.769","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
158
|
-
{"timestamp":"2022-12-07 15:55:32.773","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
159
|
-
{"timestamp":"2022-12-07 15:55:32.773","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
160
|
-
{"timestamp":"2022-12-07 15:55:32.776","level":"INFO","label":"sys","message":"start server app is run"}
|
|
161
|
-
{"timestamp":"2022-12-07 15:55:32.776","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
162
|
-
{"timestamp":"2022-12-07 15:55:33.788","level":"ERROR","label":"sys","message":"Caught exception: Unsatisfied dependency expressed through [a] "}
|
|
163
|
-
{"timestamp":"2022-12-07 15:55:33.789","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
164
|
-
{"timestamp":"2022-12-07 15:55:33.795","level":"ERROR","label":"sys","message":"stack: Error: Unsatisfied dependency expressed through [a] \n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:18:26)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:17:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:20:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
165
|
-
{"timestamp":"2022-12-07 15:55:33.797","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
166
|
-
{"timestamp":"2022-12-07 16:01:23.16","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
167
|
-
{"timestamp":"2022-12-07 16:01:23.19","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
168
|
-
{"timestamp":"2022-12-07 16:01:23.20","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
169
|
-
{"timestamp":"2022-12-07 16:01:23.22","level":"INFO","label":"sys","message":"start server app is run"}
|
|
170
|
-
{"timestamp":"2022-12-07 16:01:23.23","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
171
|
-
{"timestamp":"2022-12-07 16:01:24.29","level":"ERROR","label":"sys","message":"Caught exception: Cannot read properties of undefined (reading 'sayHello')"}
|
|
172
|
-
{"timestamp":"2022-12-07 16:01:24.30","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
173
|
-
{"timestamp":"2022-12-07 16:01:24.36","level":"ERROR","label":"sys","message":"stack: TypeError: Cannot read properties of undefined (reading 'sayHello')\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
174
|
-
{"timestamp":"2022-12-07 16:01:24.37","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
175
|
-
{"timestamp":"2022-12-07 16:02:19.804","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
176
|
-
{"timestamp":"2022-12-07 16:02:19.807","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
177
|
-
{"timestamp":"2022-12-07 16:02:19.808","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
178
|
-
{"timestamp":"2022-12-07 16:02:19.810","level":"INFO","label":"sys","message":"start server app is run"}
|
|
179
|
-
{"timestamp":"2022-12-07 16:02:19.811","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
180
|
-
{"timestamp":"2022-12-07 16:02:20.816","level":"ERROR","label":"sys","message":"Caught exception: Cannot read properties of undefined (reading 'sayHello')"}
|
|
181
|
-
{"timestamp":"2022-12-07 16:02:20.817","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
182
|
-
{"timestamp":"2022-12-07 16:02:20.823","level":"ERROR","label":"sys","message":"stack: TypeError: Cannot read properties of undefined (reading 'sayHello')\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
183
|
-
{"timestamp":"2022-12-07 16:02:20.824","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
184
|
-
{"timestamp":"2022-12-07 16:02:58.992","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
185
|
-
{"timestamp":"2022-12-07 16:02:58.995","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
186
|
-
{"timestamp":"2022-12-07 16:02:58.995","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
187
|
-
{"timestamp":"2022-12-07 16:02:58.998","level":"INFO","label":"sys","message":"start server app is run"}
|
|
188
|
-
{"timestamp":"2022-12-07 16:02:58.998","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
189
|
-
{"timestamp":"2022-12-07 16:03:00.01","level":"ERROR","label":"sys","message":"Caught exception: Cannot read properties of undefined (reading 'sayHello')"}
|
|
190
|
-
{"timestamp":"2022-12-07 16:03:00.02","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
191
|
-
{"timestamp":"2022-12-07 16:03:00.08","level":"ERROR","label":"sys","message":"stack: TypeError: Cannot read properties of undefined (reading 'sayHello')\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
192
|
-
{"timestamp":"2022-12-07 16:03:00.09","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
193
|
-
{"timestamp":"2022-12-07 16:05:54.120","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
194
|
-
{"timestamp":"2022-12-07 16:05:54.123","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
195
|
-
{"timestamp":"2022-12-07 16:05:54.124","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
196
|
-
{"timestamp":"2022-12-07 16:05:54.126","level":"INFO","label":"sys","message":"start server app is run"}
|
|
197
|
-
{"timestamp":"2022-12-07 16:05:54.127","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
198
|
-
{"timestamp":"2022-12-07 16:05:55.134","level":"ERROR","label":"sys","message":"Caught exception: Cannot read properties of undefined (reading 'sayHello')"}
|
|
199
|
-
{"timestamp":"2022-12-07 16:05:55.134","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
200
|
-
{"timestamp":"2022-12-07 16:05:55.140","level":"ERROR","label":"sys","message":"stack: TypeError: Cannot read properties of undefined (reading 'sayHello')\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
201
|
-
{"timestamp":"2022-12-07 16:05:55.142","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
202
|
-
{"timestamp":"2022-12-07 16:06:08.528","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
203
|
-
{"timestamp":"2022-12-07 16:06:08.531","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
204
|
-
{"timestamp":"2022-12-07 16:06:08.531","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
205
|
-
{"timestamp":"2022-12-07 16:06:08.534","level":"INFO","label":"sys","message":"start server app is run"}
|
|
206
|
-
{"timestamp":"2022-12-07 16:06:08.534","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
207
|
-
{"timestamp":"2022-12-07 16:10:41.492","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
208
|
-
{"timestamp":"2022-12-07 16:10:41.540","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
209
|
-
{"timestamp":"2022-12-07 16:10:41.541","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
210
|
-
{"timestamp":"2022-12-07 16:10:41.543","level":"INFO","label":"sys","message":"start server app is run"}
|
|
211
|
-
{"timestamp":"2022-12-07 16:10:41.543","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
212
|
-
{"timestamp":"2022-12-07 16:10:42.556","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
213
|
-
{"timestamp":"2022-12-07 16:11:34.778","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
214
|
-
{"timestamp":"2022-12-07 16:11:34.782","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
215
|
-
{"timestamp":"2022-12-07 16:11:34.782","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
216
|
-
{"timestamp":"2022-12-07 16:11:34.785","level":"INFO","label":"sys","message":"start server app is run"}
|
|
217
|
-
{"timestamp":"2022-12-07 16:11:34.785","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
218
|
-
{"timestamp":"2022-12-07 16:11:35.801","level":"ERROR","label":"sys","message":"Caught exception: Unsatisfied dependency expressed through [a] "}
|
|
219
|
-
{"timestamp":"2022-12-07 16:11:35.801","level":"ERROR","label":"sys","message":"Exception origin: uncaughtException"}
|
|
220
|
-
{"timestamp":"2022-12-07 16:11:35.808","level":"ERROR","label":"sys","message":"stack: Error: Unsatisfied dependency expressed through [a] \n at BService.get (D:\\code\\fast-car\\fast-car\\fastcar-core\\src\\annotation\\bind\\CallDependency.ts:17:26)\n at BService.sayHello (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\bService.ts:16:8)\n at CService.test (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\service\\cService.ts:19:10)\n at Timeout._onTimeout (D:\\code\\fast-car\\fast-car\\fastcar-core\\test\\multi\\app.ts:14:4)\n at listOnTimeout (node:internal/timers:559:17)\n at processTimers (node:internal/timers:502:7)"}
|
|
221
|
-
{"timestamp":"2022-12-07 16:11:35.809","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|
|
222
|
-
{"timestamp":"2022-12-07 16:11:50.11","level":"INFO","label":"sys","message":"Start scanning component"}
|
|
223
|
-
{"timestamp":"2022-12-07 16:11:50.14","level":"INFO","label":"sys","message":"Complete component scan"}
|
|
224
|
-
{"timestamp":"2022-12-07 16:11:50.15","level":"INFO","label":"sys","message":"Call application initialization method"}
|
|
225
|
-
{"timestamp":"2022-12-07 16:11:50.17","level":"INFO","label":"sys","message":"start server app is run"}
|
|
226
|
-
{"timestamp":"2022-12-07 16:11:50.18","level":"INFO","label":"sys","message":"version 1.0.0"}
|
|
227
|
-
{"timestamp":"2022-12-07 16:11:51.32","level":"INFO","label":"sys","message":"exit reason","splat":"[\"beforeExit exit\"]"}
|