chyz 1.0.12-rc.8 → 1.0.13-rc.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/BaseChyz.ts +72 -12
  2. package/Examples/Controllers/ApiController.ts +88 -30
  3. package/Examples/Controllers/KeyCloakController.ts +100 -0
  4. package/Examples/Controllers/PublicController.ts +5 -7
  5. package/Examples/Controllers/SiteController.ts +82 -32
  6. package/Examples/Models/Categories.ts +36 -0
  7. package/Examples/Models/Customer.ts +115 -0
  8. package/Examples/Models/KeycloakUser.ts +66 -0
  9. package/Examples/Models/Order.ts +64 -0
  10. package/Examples/Models/OrderItem.ts +27 -0
  11. package/Examples/Models/ProductModels.ts +50 -0
  12. package/Examples/Models/ProductToCategories.ts +35 -0
  13. package/Examples/Models/Products.ts +49 -0
  14. package/Examples/Models/Stocks.ts +60 -0
  15. package/Examples/Models/User.ts +66 -35
  16. package/Examples/Models/UserPermission.ts +37 -0
  17. package/Examples/index-keycloack.ts +78 -0
  18. package/Examples/index.ts +16 -15
  19. package/Examples/keycloak.json +7 -0
  20. package/Examples/log/app.log +903 -1034
  21. package/Examples/log/errors.log +79 -256
  22. package/Examples/package.json +46 -44
  23. package/Examples/tsconfig.json +1 -1
  24. package/README.md +118 -16
  25. package/base/ActionFilter.ts +2 -2
  26. package/base/BaseError.ts +2 -2
  27. package/base/DataErrorDbException.ts +1 -1
  28. package/base/DbConnection.ts +6 -0
  29. package/base/ForbiddenHttpException.ts +1 -1
  30. package/base/InvalidConfigException.ts +1 -1
  31. package/base/Model.ts +204 -15
  32. package/base/NotFoundHttpException.ts +1 -1
  33. package/base/RestClient.ts +28 -0
  34. package/base/UnauthorizedHttpException.ts +2 -1
  35. package/base/ValidationHttpException.ts +14 -0
  36. package/base/db/Exception.ts +14 -0
  37. package/base/index.ts +2 -0
  38. package/dist/BaseChyz.js +56 -10
  39. package/dist/BaseChyz.js.map +1 -1
  40. package/dist/README.md +270 -0
  41. package/dist/base/ActionFilter.js +2 -2
  42. package/dist/base/ActionFilter.js.map +1 -1
  43. package/dist/base/BaseError.js +2 -2
  44. package/dist/base/BaseError.js.map +1 -1
  45. package/dist/base/DataErrorDbException.js +1 -1
  46. package/dist/base/DataErrorDbException.js.map +1 -1
  47. package/dist/base/DbConnection.js +3 -0
  48. package/dist/base/DbConnection.js.map +1 -1
  49. package/dist/base/ForbiddenHttpException.js +1 -1
  50. package/dist/base/ForbiddenHttpException.js.map +1 -1
  51. package/dist/base/InvalidConfigException.js +1 -1
  52. package/dist/base/InvalidConfigException.js.map +1 -1
  53. package/dist/base/Model.js +181 -13
  54. package/dist/base/Model.js.map +1 -1
  55. package/dist/base/NotFoundHttpException.js +1 -1
  56. package/dist/base/NotFoundHttpException.js.map +1 -1
  57. package/dist/base/RestClient.js +27 -0
  58. package/dist/base/RestClient.js.map +1 -0
  59. package/dist/base/UnauthorizedHttpException.js +1 -1
  60. package/dist/base/UnauthorizedHttpException.js.map +1 -1
  61. package/dist/base/ValidationHttpException.js +18 -0
  62. package/dist/base/ValidationHttpException.js.map +1 -0
  63. package/dist/base/db/Exception.js +16 -0
  64. package/dist/base/db/Exception.js.map +1 -0
  65. package/dist/base/index.js +2 -0
  66. package/dist/base/index.js.map +1 -1
  67. package/dist/filters/AccessControl.js +2 -2
  68. package/dist/filters/AccessControl.js.map +1 -1
  69. package/dist/filters/AccessRule.js.map +1 -1
  70. package/dist/filters/auth/AuthMethod.js +2 -2
  71. package/dist/filters/auth/AuthMethod.js.map +1 -1
  72. package/dist/filters/auth/HttpHeaderAuth.js.map +1 -1
  73. package/dist/filters/auth/JwtHttpBearerAuth.js +1 -0
  74. package/dist/filters/auth/JwtHttpBearerAuth.js.map +1 -1
  75. package/dist/filters/auth/KeyCloakHttpBearerAuth.js +117 -0
  76. package/dist/filters/auth/KeyCloakHttpBearerAuth.js.map +1 -0
  77. package/dist/index.js +28 -0
  78. package/dist/index.js.map +1 -0
  79. package/dist/package.json +55 -0
  80. package/dist/web/{User.js → WebUser.js} +12 -7
  81. package/dist/web/WebUser.js.map +1 -0
  82. package/filters/AccessControl.ts +3 -3
  83. package/filters/AccessRule.ts +2 -2
  84. package/filters/auth/AuthMethod.ts +4 -4
  85. package/filters/auth/HttpHeaderAuth.ts +2 -2
  86. package/filters/auth/JwtHttpBearerAuth.ts +4 -5
  87. package/filters/auth/KeyCloakHttpBearerAuth.ts +115 -0
  88. package/index.ts +14 -0
  89. package/package-lock.json +5259 -0
  90. package/package.json +56 -52
  91. package/web/{User.ts → WebUser.ts} +10 -6
  92. package/.idea/Chy-Nodejs-Framework.iml +0 -12
  93. package/.idea/jsLibraryMappings.xml +0 -6
  94. package/.idea/modules.xml +0 -8
  95. package/.idea/vcs.xml +0 -6
  96. package/dist/web/User.js.map +0 -1
@@ -1,1054 +1,923 @@
1
- [2021-08-16T11.26.30.777] [INFO] BaseChyz [153] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2
- [2021-08-16T11.26.30.782] [INFO] BaseChyz [153] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
3
- [2021-08-16T11.26.30.782] [INFO] BaseChyz [153] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
4
- [2021-08-17T10.09.56.181] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
5
- [2021-08-17T10.09.56.185] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
6
- [2021-08-17T10.09.56.186] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
7
- [2021-08-17T10.10.12.616] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
8
- [2021-08-17T10.10.12.620] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
9
- [2021-08-17T10.10.12.621] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
10
- [2021-08-17T10.10.47.017] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
11
- [2021-08-17T10.10.47.021] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
12
- [2021-08-17T10.10.47.022] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
13
- [2021-08-17T10.11.46.585] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
14
- [2021-08-17T10.11.46.589] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
15
- [2021-08-17T10.11.46.589] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
16
- [2021-08-17T10.12.09.261] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
17
- [2021-08-17T10.12.09.263] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
18
- [2021-08-17T10.12.09.264] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
19
- [2021-08-17T10.12.09.264] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
20
- [2021-08-17T10.12.09.264] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
21
- [2021-08-17T10.12.09.324] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
22
- [2021-08-17T10.12.09.324] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
23
- [2021-08-17T10.12.09.324] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
24
- [2021-08-17T10.12.09.325] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
25
- [2021-08-17T10.12.09.325] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
26
- [2021-08-17T10.12.09.420] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
27
- [2021-08-17T10.12.09.422] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
28
- [2021-08-17T10.12.09.423] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
29
- [2021-08-17T10.12.10.889] [DEBUG] BaseChyz [277] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request1 site/signup
30
- [2021-08-17T10.12.10.890] [DEBUG] BaseChyz [302] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
31
- [2021-08-17T10.12.10.891] [ERROR] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: You are not allowed to perform this action.
32
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:59:22)
33
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:52:14)
34
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:40:43)
35
- at Generator.next (<anonymous>)
36
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
37
- at new Promise (<anonymous>)
38
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
39
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
40
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:303:34)
41
- at Generator.next (<anonymous>) {
42
- statusCode: 500
1
+ [2021-11-30T13.10.32.178] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _OrderItem
2
+ [2021-11-30T13.10.32.181] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Order
3
+ [2021-11-30T13.10.32.193] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Customer
4
+ [2021-11-30T13.10.32.203] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _ProductModels
5
+ [2021-11-30T13.10.32.206] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Products
6
+ [2021-11-30T13.10.32.207] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
7
+ [2021-11-30T13.10.32.207] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
8
+ [2021-11-30T13.10.32.208] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
9
+ [2021-11-30T13.10.32.208] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
10
+ [2021-11-30T13.10.32.299] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
11
+ [2021-11-30T13.10.32.299] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
12
+ [2021-11-30T13.10.32.300] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
13
+ [2021-11-30T13.10.32.340] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
14
+ [2021-11-30T13.10.32.341] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
15
+ [2021-11-30T13.10.32.463] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
16
+ [2021-11-30T13.10.32.464] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
17
+ [2021-11-30T13.10.32.465] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
18
+ [2021-11-30T13.10.32.466] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
19
+ [2021-11-30T13.10.32.467] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
20
+ [2021-11-30T13.10.32.467] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
21
+ [2021-11-30T13.10.32.470] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
22
+ [2021-11-30T13.10.32.470] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
23
+ [2021-11-30T13.10.32.471] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
24
+ [2021-11-30T13.10.32.475] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
25
+ [2021-11-30T13.10.33.149] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
26
+ [2021-11-30T13.10.33.212] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
27
+ [2021-11-30T13.12.22.263] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _OrderItem
28
+ [2021-11-30T13.12.22.267] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Order
29
+ [2021-11-30T13.12.22.277] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Customer
30
+ [2021-11-30T13.12.22.286] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _ProductModels
31
+ [2021-11-30T13.12.22.288] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Products
32
+ [2021-11-30T13.12.22.289] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
33
+ [2021-11-30T13.12.22.290] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
34
+ [2021-11-30T13.12.22.290] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
35
+ [2021-11-30T13.12.22.291] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
36
+ [2021-11-30T13.12.22.372] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
37
+ [2021-11-30T13.12.22.373] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
38
+ [2021-11-30T13.12.22.373] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
39
+ [2021-11-30T13.12.22.412] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
40
+ [2021-11-30T13.12.22.413] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
41
+ [2021-11-30T13.12.22.540] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
42
+ [2021-11-30T13.12.22.541] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
43
+ [2021-11-30T13.12.22.541] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
44
+ [2021-11-30T13.12.22.541] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
45
+ [2021-11-30T13.12.22.542] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
46
+ [2021-11-30T13.12.22.542] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
47
+ [2021-11-30T13.12.22.545] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
48
+ [2021-11-30T13.12.22.545] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
49
+ [2021-11-30T13.12.22.546] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
50
+ [2021-11-30T13.12.22.550] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
51
+ [2021-11-30T13.12.23.235] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
52
+ [2021-11-30T13.12.23.305] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
53
+ [2021-11-30T13.12.27.054] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
54
+ [2021-11-30T13.12.27.056] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
55
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjYyNDM2LCJleHAiOjE2MzgyNjYwMzZ9.paWA1a7MUI143YSJboh6Zu31bAfkg7MWpJj9kL7zt2k',
56
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjYyNDM2LCJleHAiOjE2MzgyNjYwMzZ9.paWA1a7MUI143YSJboh6Zu31bAfkg7MWpJj9kL7zt2k',
57
+ index: 0,
58
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjYyNDM2LCJleHAiOjE2MzgyNjYwMzZ9.paWA1a7MUI143YSJboh6Zu31bAfkg7MWpJj9kL7zt2k',
59
+ groups: undefined
60
+ ]
61
+ [2021-11-30T13.12.27.063] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
62
+ [2021-11-30T13.12.27.131] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
63
+ user: 1,
64
+ ip: '::1',
65
+ agent: 'PostmanRuntime/7.28.4',
66
+ iat: 1638262436,
67
+ exp: 1638266036
43
68
  }
44
- [2021-08-17T10.12.26.556] [DEBUG] BaseChyz [277] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request1 site/signup
45
- [2021-08-17T10.12.26.556] [DEBUG] BaseChyz [302] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
46
- [2021-08-17T10.12.26.557] [ERROR] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: You are not allowed to perform this action.
47
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:59:22)
48
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:52:14)
49
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:40:43)
69
+ [2021-11-30T13.12.27.133] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: Token Expired
70
+ [2021-11-30T13.12.27.134] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
71
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
72
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
73
+ at JwtHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
74
+ at JwtHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:77:14)
75
+ at JwtHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:65:36)
50
76
  at Generator.next (<anonymous>)
51
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
52
- at new Promise (<anonymous>)
53
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
54
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
55
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:303:34)
56
- at Generator.next (<anonymous>) {
57
- statusCode: 500
77
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:5:58)
78
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
79
+ statusCode: 401
58
80
  }
59
- [2021-08-17T10.12.32.757] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
60
- [2021-08-17T10.12.32.760] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
61
- [2021-08-17T10.12.32.760] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
62
- [2021-08-17T10.12.32.761] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
63
- [2021-08-17T10.12.32.761] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
64
- [2021-08-17T10.12.32.818] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
65
- [2021-08-17T10.12.32.819] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
66
- [2021-08-17T10.12.32.819] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
67
- [2021-08-17T10.12.32.820] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
68
- [2021-08-17T10.12.32.820] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
69
- [2021-08-17T10.12.32.927] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
70
- [2021-08-17T10.12.32.930] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
71
- [2021-08-17T10.12.32.930] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
72
- [2021-08-17T10.16.07.304] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
73
- [2021-08-17T10.16.07.307] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
74
- [2021-08-17T10.16.07.308] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
75
- [2021-08-17T10.16.07.308] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
76
- [2021-08-17T10.16.07.309] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
77
- [2021-08-17T10.16.07.368] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
78
- [2021-08-17T10.16.07.368] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
79
- [2021-08-17T10.16.07.368] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
80
- [2021-08-17T10.16.07.369] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
81
- [2021-08-17T10.16.07.369] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
82
- [2021-08-17T10.16.07.480] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
83
- [2021-08-17T10.16.07.483] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
84
- [2021-08-17T10.16.07.484] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
85
- [2021-08-17T10.17.08.916] [DEBUG] BaseChyz [277] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request1 site/signup
86
- [2021-08-17T10.17.08.918] [DEBUG] BaseChyz [302] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
87
- [2021-08-17T10.18.01.676] [ERROR] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: You are not allowed to perform this action.
88
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:59:22)
89
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:52:14)
90
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:40:43)
91
- at Generator.next (<anonymous>)
92
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
93
- at new Promise (<anonymous>)
94
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
95
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
96
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:303:34)
97
- at Generator.next (<anonymous>) {
98
- statusCode: 500
81
+ [2021-11-30T13.12.30.494] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
82
+ [2021-11-30T13.12.30.495] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
83
+ [2021-11-30T13.12.30.496] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
84
+ [2021-11-30T13.12.30.498] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."username" = 'demo' LIMIT 1;
85
+ [2021-11-30T13.12.30.567] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Db found user demo
86
+ [2021-11-30T13.12.30.791] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Db user verify demo
87
+ [2021-11-30T13.12.30.793] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Db user create access token demo expiresIn 1h
88
+ [2021-11-30T13.12.35.973] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
89
+ [2021-11-30T13.12.35.974] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
90
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
91
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
92
+ index: 0,
93
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
94
+ groups: undefined
95
+ ]
96
+ [2021-11-30T13.12.35.975] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
97
+ [2021-11-30T13.12.36.042] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
98
+ user: 1,
99
+ ip: '::1',
100
+ agent: 'PostmanRuntime/7.28.4',
101
+ iat: 1638267150,
102
+ exp: 1638270750
99
103
  }
100
- [2021-08-17T10.21.34.987] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
101
- [2021-08-17T10.21.34.990] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
102
- [2021-08-17T10.21.34.991] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
103
- [2021-08-17T10.21.34.991] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
104
- [2021-08-17T10.21.34.992] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
105
- [2021-08-17T10.21.35.050] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
106
- [2021-08-17T10.21.35.050] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
107
- [2021-08-17T10.21.35.050] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
108
- [2021-08-17T10.21.35.051] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
109
- [2021-08-17T10.21.35.051] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
110
- [2021-08-17T10.21.35.158] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
111
- [2021-08-17T10.21.35.161] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
112
- [2021-08-17T10.21.35.162] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
113
- [2021-08-17T10.22.21.615] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
114
- [2021-08-17T10.22.21.617] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
115
- [2021-08-17T10.22.21.618] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
116
- [2021-08-17T10.22.21.619] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
117
- [2021-08-17T10.22.21.619] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
118
- [2021-08-17T10.22.21.676] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
119
- [2021-08-17T10.22.21.676] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
120
- [2021-08-17T10.22.21.677] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
121
- [2021-08-17T10.22.21.677] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
122
- [2021-08-17T10.22.21.678] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
123
- [2021-08-17T10.22.21.787] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
124
- [2021-08-17T10.22.21.790] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
125
- [2021-08-17T10.22.21.791] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
126
- [2021-08-17T10.22.26.042] [DEBUG] BaseChyz [277] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request1 site/signup
127
- [2021-08-17T10.22.26.043] [DEBUG] BaseChyz [302] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
128
- [2021-08-17T10.22.38.694] [ERROR] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: You are not allowed to perform this action.
129
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:61:22)
130
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:54:14)
131
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:40:43)
132
- at Generator.next (<anonymous>)
133
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
134
- at new Promise (<anonymous>)
135
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
136
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
137
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:303:34)
138
- at Generator.next (<anonymous>) {
139
- statusCode: 500
104
+ [2021-11-30T13.12.36.043] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
105
+ [2021-11-30T13.12.36.044] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_3
106
+ [2021-11-30T13.12.36.047] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "_Products"."id", "_Products"."title", "_Products"."model_id", "_Products"."properties", "_ProductModel"."id" AS "_ProductModel.id", "_ProductModel"."title" AS "_ProductModel.title", "_ProductModel"."stock_code" AS "_ProductModel.stock_code", "_ProductModel"."properties" AS "_ProductModel.properties" FROM "products" AS "_Products" LEFT OUTER JOIN "models" AS "_ProductModel" ON "_Products"."model_id" = "_ProductModel"."id";
107
+ [2021-11-30T13.14.08.339] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _OrderItem
108
+ [2021-11-30T13.14.08.344] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Order
109
+ [2021-11-30T13.14.08.355] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Customer
110
+ [2021-11-30T13.14.08.364] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _ProductModels
111
+ [2021-11-30T13.14.08.366] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
112
+ [2021-11-30T13.14.08.369] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
113
+ [2021-11-30T13.14.08.370] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
114
+ [2021-11-30T13.14.08.370] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
115
+ [2021-11-30T13.14.08.375] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
116
+ [2021-11-30T13.14.09.035] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
117
+ [2021-11-30T13.14.09.097] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
118
+ [2021-11-30T13.14.47.753] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _OrderItem
119
+ [2021-11-30T13.14.47.757] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Order
120
+ [2021-11-30T13.14.47.766] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Customer
121
+ [2021-11-30T13.14.47.775] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _ProductModels
122
+ [2021-11-30T13.14.47.777] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Products
123
+ [2021-11-30T13.14.47.779] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
124
+ [2021-11-30T13.14.47.779] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
125
+ [2021-11-30T13.14.47.780] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
126
+ [2021-11-30T13.14.47.780] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
127
+ [2021-11-30T13.14.47.863] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
128
+ [2021-11-30T13.14.47.864] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
129
+ [2021-11-30T13.14.47.865] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
130
+ [2021-11-30T13.14.47.905] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
131
+ [2021-11-30T13.14.47.905] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
132
+ [2021-11-30T13.14.48.030] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
133
+ [2021-11-30T13.14.48.030] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
134
+ [2021-11-30T13.14.48.031] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
135
+ [2021-11-30T13.14.48.031] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
136
+ [2021-11-30T13.14.48.031] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
137
+ [2021-11-30T13.14.48.032] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
138
+ [2021-11-30T13.14.48.035] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
139
+ [2021-11-30T13.14.48.035] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
140
+ [2021-11-30T13.14.48.036] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
141
+ [2021-11-30T13.14.48.040] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
142
+ [2021-11-30T13.14.48.153] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
143
+ [2021-11-30T13.14.48.154] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
144
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
145
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
146
+ index: 0,
147
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
148
+ groups: undefined
149
+ ]
150
+ [2021-11-30T13.14.48.716] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
151
+ [2021-11-30T13.14.48.717] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
152
+ [2021-11-30T13.14.48.783] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
153
+ [2021-11-30T13.14.48.785] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
154
+ user: 1,
155
+ ip: '::1',
156
+ agent: 'PostmanRuntime/7.28.4',
157
+ iat: 1638267150,
158
+ exp: 1638270750
140
159
  }
141
- [2021-08-17T10.22.42.090] [DEBUG] BaseChyz [277] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request1 site/signup
142
- [2021-08-17T10.22.42.092] [DEBUG] BaseChyz [302] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
143
- [2021-08-17T10.23.32.331] [ERROR] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: You are not allowed to perform this action.
144
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:61:22)
145
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:54:14)
146
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:40:43)
147
- at Generator.next (<anonymous>)
148
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
149
- at new Promise (<anonymous>)
150
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
151
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
152
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:303:34)
153
- at Generator.next (<anonymous>) {
154
- statusCode: 500
160
+ [2021-11-30T13.14.48.787] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
161
+ [2021-11-30T13.14.48.788] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
162
+ [2021-11-30T13.14.48.791] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "_Products"."id", "_Products"."title", "_Products"."model_id", "_Products"."properties", "_ProductModel"."id" AS "_ProductModel.id", "_ProductModel"."title" AS "_ProductModel.title", "_ProductModel"."stock_code" AS "_ProductModel.stock_code", "_ProductModel"."properties" AS "_ProductModel.properties" FROM "products" AS "_Products" LEFT OUTER JOIN "models" AS "_ProductModel" ON "_Products"."model_id" = "_ProductModel"."id";
163
+ [2021-11-30T13.15.02.688] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
164
+ [2021-11-30T13.15.02.688] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
165
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
166
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
167
+ index: 0,
168
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
169
+ groups: undefined
170
+ ]
171
+ [2021-11-30T13.15.02.953] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
172
+ [2021-11-30T13.15.03.018] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
173
+ user: 1,
174
+ ip: '::1',
175
+ agent: 'PostmanRuntime/7.28.4',
176
+ iat: 1638267150,
177
+ exp: 1638270750
155
178
  }
156
- [2021-08-17T10.25.23.359] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
157
- [2021-08-17T10.25.23.362] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
158
- [2021-08-17T10.25.23.363] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
159
- [2021-08-17T10.25.23.363] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
160
- [2021-08-17T10.25.23.364] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
161
- [2021-08-17T10.25.23.424] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
162
- [2021-08-17T10.25.23.425] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
163
- [2021-08-17T10.25.23.425] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
164
- [2021-08-17T10.25.23.426] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
165
- [2021-08-17T10.25.23.426] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
166
- [2021-08-17T10.25.23.534] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
167
- [2021-08-17T10.25.23.536] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
168
- [2021-08-17T10.25.23.537] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
169
- [2021-08-17T10.25.48.106] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
170
- [2021-08-17T10.25.48.109] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
171
- [2021-08-17T10.25.48.109] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
172
- [2021-08-17T10.25.48.110] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
173
- [2021-08-17T10.25.48.110] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
174
- [2021-08-17T10.25.48.167] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
175
- [2021-08-17T10.25.48.168] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
176
- [2021-08-17T10.25.48.168] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
177
- [2021-08-17T10.25.48.169] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
178
- [2021-08-17T10.25.48.169] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
179
- [2021-08-17T10.25.48.277] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
180
- [2021-08-17T10.25.48.280] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
181
- [2021-08-17T10.25.48.280] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
182
- [2021-08-17T10.28.33.175] [DEBUG] BaseChyz [277] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request1 site/signup
183
- [2021-08-17T10.28.33.176] [DEBUG] BaseChyz [302] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
184
- [2021-08-17T10.28.55.752] [ERROR] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: You are not allowed to perform this action.
185
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:62:22)
186
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:55:14)
187
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:40:43)
188
- at Generator.next (<anonymous>)
189
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
190
- at new Promise (<anonymous>)
191
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
192
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
193
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:303:34)
194
- at Generator.next (<anonymous>) {
195
- statusCode: 500
179
+ [2021-11-30T13.15.03.019] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
180
+ [2021-11-30T13.15.03.020] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
181
+ [2021-11-30T13.15.03.021] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "_Products"."id", "_Products"."title", "_Products"."model_id", "_Products"."properties", "_ProductModel"."id" AS "_ProductModel.id", "_ProductModel"."title" AS "_ProductModel.title", "_ProductModel"."stock_code" AS "_ProductModel.stock_code", "_ProductModel"."properties" AS "_ProductModel.properties" FROM "products" AS "_Products" LEFT OUTER JOIN "models" AS "_ProductModel" ON "_Products"."model_id" = "_ProductModel"."id";
182
+ [2021-11-30T13.15.35.894] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _OrderItem
183
+ [2021-11-30T13.15.35.899] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Order
184
+ [2021-11-30T13.15.35.909] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Customer
185
+ [2021-11-30T13.15.35.919] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _ProductModels
186
+ [2021-11-30T13.15.35.920] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - sadfasdfasdfasdfasdf Function
187
+ [2021-11-30T13.15.35.922] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... _Products
188
+ [2021-11-30T13.15.35.923] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
189
+ [2021-11-30T13.15.35.924] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
190
+ [2021-11-30T13.15.35.924] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
191
+ [2021-11-30T13.15.35.925] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
192
+ [2021-11-30T13.15.36.009] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
193
+ [2021-11-30T13.15.36.010] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
194
+ [2021-11-30T13.15.36.010] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
195
+ [2021-11-30T13.15.36.051] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
196
+ [2021-11-30T13.15.36.051] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
197
+ [2021-11-30T13.15.36.193] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
198
+ [2021-11-30T13.15.36.193] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
199
+ [2021-11-30T13.15.36.194] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
200
+ [2021-11-30T13.15.36.194] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
201
+ [2021-11-30T13.15.36.194] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
202
+ [2021-11-30T13.15.36.195] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
203
+ [2021-11-30T13.15.36.198] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
204
+ [2021-11-30T13.15.36.198] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
205
+ [2021-11-30T13.15.36.198] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
206
+ [2021-11-30T13.15.36.203] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
207
+ [2021-11-30T13.15.36.890] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
208
+ [2021-11-30T13.15.36.954] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
209
+ [2021-11-30T13.15.38.611] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
210
+ [2021-11-30T13.15.38.612] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
211
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
212
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
213
+ index: 0,
214
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
215
+ groups: undefined
216
+ ]
217
+ [2021-11-30T13.15.38.619] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
218
+ [2021-11-30T13.15.38.686] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
219
+ user: 1,
220
+ ip: '::1',
221
+ agent: 'PostmanRuntime/7.28.4',
222
+ iat: 1638267150,
223
+ exp: 1638270750
196
224
  }
197
- [2021-08-17T10.29.15.998] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
198
- [2021-08-17T10.29.16.001] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
199
- [2021-08-17T10.29.16.001] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
200
- [2021-08-17T10.29.16.002] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
201
- [2021-08-17T10.29.16.002] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
202
- [2021-08-17T10.29.16.065] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
203
- [2021-08-17T10.29.16.066] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
204
- [2021-08-17T10.29.16.066] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
205
- [2021-08-17T10.29.16.066] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
206
- [2021-08-17T10.29.16.067] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
207
- [2021-08-17T10.29.16.171] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
208
- [2021-08-17T10.29.16.174] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
209
- [2021-08-17T10.29.16.174] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
210
- [2021-08-17T10.29.51.117] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
211
- [2021-08-17T10.29.51.120] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
212
- [2021-08-17T10.29.51.120] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
213
- [2021-08-17T10.29.51.121] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
214
- [2021-08-17T10.29.51.121] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
215
- [2021-08-17T10.29.51.177] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
216
- [2021-08-17T10.29.51.178] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
217
- [2021-08-17T10.29.51.178] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
218
- [2021-08-17T10.29.51.179] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
219
- [2021-08-17T10.29.51.179] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
220
- [2021-08-17T10.29.51.285] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
221
- [2021-08-17T10.29.51.288] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
222
- [2021-08-17T10.29.51.289] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
223
- [2021-08-17T10.29.53.858] [DEBUG] BaseChyz [277] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request1 site/signup
224
- [2021-08-17T10.29.53.859] [DEBUG] BaseChyz [302] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
225
- [2021-08-17T10.30.20.569] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
226
- [2021-08-17T10.30.25.571] [INFO] BaseChyz [83] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Logout Controller
227
- [2021-08-17T13.03.06.557] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
228
- [2021-08-17T13.03.06.560] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
229
- [2021-08-17T13.03.06.561] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
230
- [2021-08-17T13.03.06.561] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
231
- [2021-08-17T13.03.06.562] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
232
- [2021-08-17T13.03.06.621] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
233
- [2021-08-17T13.03.06.622] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
234
- [2021-08-17T13.03.06.622] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
235
- [2021-08-17T13.03.06.623] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
236
- [2021-08-17T13.03.06.623] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
237
- [2021-08-17T13.03.06.741] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
238
- [2021-08-17T13.03.06.744] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
239
- [2021-08-17T13.03.06.745] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
240
- [2021-08-17T13.03.30.243] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
241
- [2021-08-17T13.03.30.246] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
242
- [2021-08-17T13.03.30.247] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
243
- [2021-08-17T13.03.30.247] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
244
- [2021-08-17T13.03.30.248] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
245
- [2021-08-17T13.03.30.314] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
246
- [2021-08-17T13.03.30.315] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
247
- [2021-08-17T13.03.30.315] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
248
- [2021-08-17T13.03.30.316] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
249
- [2021-08-17T13.03.30.316] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
250
- [2021-08-17T13.03.30.455] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
251
- [2021-08-17T13.03.30.458] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
252
- [2021-08-17T13.03.30.459] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
253
- [2021-08-17T13.03.32.549] [ERROR] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - TypeError: controller.beforeAction is not a function
254
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:234:46)
255
- at Generator.next (<anonymous>)
256
- at C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:8:71
257
- at new Promise (<anonymous>)
258
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:4:12)
259
- at C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:232:83
260
- at Layer.handle [as handle_request] (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\router\layer.js:95:5)
261
- at next (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\router\route.js:137:13)
262
- at Route.dispatch (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\router\route.js:112:3)
263
- at Layer.handle [as handle_request] (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\express\lib\router\layer.js:95:5)
264
- [2021-08-17T13.03.51.492] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
265
- [2021-08-17T13.03.51.494] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
266
- [2021-08-17T13.03.51.495] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
267
- [2021-08-17T13.03.51.496] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
268
- [2021-08-17T13.03.51.496] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
269
- [2021-08-17T13.03.51.554] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
270
- [2021-08-17T13.03.51.555] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
271
- [2021-08-17T13.03.51.555] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
272
- [2021-08-17T13.03.51.558] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
273
- [2021-08-17T13.03.51.559] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
274
- [2021-08-17T13.03.51.664] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
275
- [2021-08-17T13.03.51.667] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
276
- [2021-08-17T13.03.51.667] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
277
- [2021-08-17T13.03.59.079] [DEBUG] BaseChyz [243] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID undefined
278
- [2021-08-17T13.04.53.360] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
279
- [2021-08-17T13.04.53.363] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
280
- [2021-08-17T13.04.53.363] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
281
- [2021-08-17T13.04.53.364] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
282
- [2021-08-17T13.04.53.364] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
283
- [2021-08-17T13.04.53.423] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
284
- [2021-08-17T13.04.53.424] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
285
- [2021-08-17T13.04.53.424] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
286
- [2021-08-17T13.04.53.425] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
287
- [2021-08-17T13.04.53.426] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
288
- [2021-08-17T13.04.53.536] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
289
- [2021-08-17T13.04.53.538] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
290
- [2021-08-17T13.04.53.539] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
291
- [2021-08-17T13.06.01.018] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
292
- [2021-08-17T13.06.01.020] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
293
- [2021-08-17T13.06.01.021] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
294
- [2021-08-17T13.06.01.021] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
295
- [2021-08-17T13.06.01.021] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
296
- [2021-08-17T13.06.01.084] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
297
- [2021-08-17T13.06.01.085] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
298
- [2021-08-17T13.06.01.085] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
299
- [2021-08-17T13.06.01.085] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
300
- [2021-08-17T13.06.01.086] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
301
- [2021-08-17T13.06.01.195] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
302
- [2021-08-17T13.06.01.197] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
303
- [2021-08-17T13.06.01.198] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
304
- [2021-08-17T13.06.16.137] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
305
- [2021-08-17T13.06.16.140] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
306
- [2021-08-17T13.06.16.141] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
307
- [2021-08-17T13.06.16.141] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
308
- [2021-08-17T13.06.16.142] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
309
- [2021-08-17T13.06.16.203] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
310
- [2021-08-17T13.06.16.203] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
311
- [2021-08-17T13.06.16.204] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
312
- [2021-08-17T13.06.16.204] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
313
- [2021-08-17T13.06.16.205] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
314
- [2021-08-17T13.06.16.314] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
315
- [2021-08-17T13.06.16.317] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
316
- [2021-08-17T13.06.16.318] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
317
- [2021-08-17T13.06.16.324] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
318
- [2021-08-17T13.06.24.875] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
319
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
320
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
321
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:49:22)
322
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:41:43)
323
- at Generator.next (<anonymous>)
324
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
325
- at new Promise (<anonymous>)
326
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
327
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
328
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:235:44) {
329
- statusCode: 500
225
+ [2021-11-30T13.15.38.688] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
226
+ [2021-11-30T13.15.38.688] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
227
+ [2021-11-30T13.15.38.692] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "_Products"."id", "_Products"."title", "_Products"."model_id", "_Products"."properties", "_ProductModel"."id" AS "_ProductModel.id", "_ProductModel"."title" AS "_ProductModel.title", "_ProductModel"."stock_code" AS "_ProductModel.stock_code", "_ProductModel"."properties" AS "_ProductModel.properties" FROM "products" AS "_Products" LEFT OUTER JOIN "models" AS "_ProductModel" ON "_Products"."model_id" = "_ProductModel"."id";
228
+ [2021-11-30T13.18.00.824] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
229
+ [2021-11-30T13.18.00.828] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
230
+ [2021-11-30T13.18.00.838] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
231
+ [2021-11-30T13.18.00.847] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
232
+ [2021-11-30T13.18.00.849] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
233
+ [2021-11-30T13.18.00.851] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
234
+ [2021-11-30T13.18.00.852] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
235
+ [2021-11-30T13.18.00.852] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
236
+ [2021-11-30T13.18.00.853] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
237
+ [2021-11-30T13.18.00.942] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
238
+ [2021-11-30T13.18.00.943] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
239
+ [2021-11-30T13.18.00.944] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
240
+ [2021-11-30T13.18.00.985] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
241
+ [2021-11-30T13.18.00.985] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
242
+ [2021-11-30T13.18.01.107] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
243
+ [2021-11-30T13.18.01.108] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
244
+ [2021-11-30T13.18.01.108] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
245
+ [2021-11-30T13.18.01.109] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
246
+ [2021-11-30T13.18.01.109] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
247
+ [2021-11-30T13.18.01.110] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
248
+ [2021-11-30T13.18.01.112] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
249
+ [2021-11-30T13.18.01.113] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
250
+ [2021-11-30T13.18.01.113] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
251
+ [2021-11-30T13.18.01.118] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
252
+ [2021-11-30T13.18.01.811] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
253
+ [2021-11-30T13.18.01.878] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
254
+ [2021-11-30T13.18.03.093] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
255
+ [2021-11-30T13.18.03.095] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
256
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
257
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
258
+ index: 0,
259
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
260
+ groups: undefined
261
+ ]
262
+ [2021-11-30T13.18.03.102] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
263
+ [2021-11-30T13.18.03.171] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
264
+ user: 1,
265
+ ip: '::1',
266
+ agent: 'PostmanRuntime/7.28.4',
267
+ iat: 1638267150,
268
+ exp: 1638270750
330
269
  }
331
- [2021-08-17T13.06.54.638] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
332
- [2021-08-17T13.06.54.641] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
333
- [2021-08-17T13.06.54.641] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
334
- [2021-08-17T13.06.54.642] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
335
- [2021-08-17T13.06.54.642] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
336
- [2021-08-17T13.06.54.702] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
337
- [2021-08-17T13.06.54.702] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
338
- [2021-08-17T13.06.54.703] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
339
- [2021-08-17T13.06.54.703] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
340
- [2021-08-17T13.06.54.704] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
341
- [2021-08-17T13.06.54.813] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
342
- [2021-08-17T13.06.54.815] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
343
- [2021-08-17T13.06.54.816] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
344
- [2021-08-17T13.06.54.890] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
345
- [2021-08-17T13.07.00.040] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
346
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
347
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
348
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:49:22)
349
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:41:43)
350
- at Generator.next (<anonymous>)
351
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
352
- at new Promise (<anonymous>)
353
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
354
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
355
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:235:44) {
356
- statusCode: 500
270
+ [2021-11-30T13.18.03.173] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
271
+ [2021-11-30T13.18.03.174] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
272
+ [2021-11-30T13.18.03.177] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "ProductsClass"."id", "ProductsClass"."title", "ProductsClass"."model_id", "ProductsClass"."properties", "ProductModelsClass"."id" AS "ProductModelsClass.id", "ProductModelsClass"."title" AS "ProductModelsClass.title", "ProductModelsClass"."stock_code" AS "ProductModelsClass.stock_code", "ProductModelsClass"."properties" AS "ProductModelsClass.properties" FROM "products" AS "ProductsClass" LEFT OUTER JOIN "models" AS "ProductModelsClass" ON "ProductsClass"."model_id" = "ProductModelsClass"."id";
273
+ [2021-11-30T13.18.53.288] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
274
+ [2021-11-30T13.18.53.292] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
275
+ [2021-11-30T13.18.53.302] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
276
+ [2021-11-30T13.18.53.311] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
277
+ [2021-11-30T13.18.53.313] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
278
+ [2021-11-30T13.18.53.315] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
279
+ [2021-11-30T13.18.53.315] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
280
+ [2021-11-30T13.18.53.316] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
281
+ [2021-11-30T13.18.53.316] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
282
+ [2021-11-30T13.18.53.395] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
283
+ [2021-11-30T13.18.53.396] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
284
+ [2021-11-30T13.18.53.396] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
285
+ [2021-11-30T13.18.53.440] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
286
+ [2021-11-30T13.18.53.441] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
287
+ [2021-11-30T13.18.53.575] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
288
+ [2021-11-30T13.18.53.575] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
289
+ [2021-11-30T13.18.53.576] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
290
+ [2021-11-30T13.18.53.576] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
291
+ [2021-11-30T13.18.53.578] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
292
+ [2021-11-30T13.18.53.579] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
293
+ [2021-11-30T13.18.53.582] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
294
+ [2021-11-30T13.18.53.583] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
295
+ [2021-11-30T13.18.53.583] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
296
+ [2021-11-30T13.18.53.589] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
297
+ [2021-11-30T13.18.53.602] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
298
+ [2021-11-30T13.18.53.604] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
299
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
300
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
301
+ index: 0,
302
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
303
+ groups: undefined
304
+ ]
305
+ [2021-11-30T13.18.54.283] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
306
+ [2021-11-30T13.18.54.284] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
307
+ [2021-11-30T13.18.54.348] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
308
+ [2021-11-30T13.18.54.355] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
309
+ user: 1,
310
+ ip: '::1',
311
+ agent: 'PostmanRuntime/7.28.4',
312
+ iat: 1638267150,
313
+ exp: 1638270750
357
314
  }
358
- [2021-08-17T13.07.46.930] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
359
- [2021-08-17T13.07.46.933] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
360
- [2021-08-17T13.07.46.933] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
361
- [2021-08-17T13.07.46.934] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
362
- [2021-08-17T13.07.46.934] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
363
- [2021-08-17T13.07.46.999] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
364
- [2021-08-17T13.07.47.000] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
365
- [2021-08-17T13.07.47.000] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
366
- [2021-08-17T13.07.47.001] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
367
- [2021-08-17T13.07.47.001] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
368
- [2021-08-17T13.07.47.112] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
369
- [2021-08-17T13.07.47.116] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
370
- [2021-08-17T13.07.47.116] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
371
- [2021-08-17T13.07.47.801] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
372
- [2021-08-17T13.07.52.749] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
373
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
374
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
375
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:49:22)
376
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:41:43)
377
- at Generator.next (<anonymous>)
378
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
379
- at new Promise (<anonymous>)
380
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
381
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
382
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:235:48) {
383
- statusCode: 500
315
+ [2021-11-30T13.18.54.357] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
316
+ [2021-11-30T13.18.54.358] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
317
+ [2021-11-30T13.18.54.360] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - EagerLoadingError [SequelizeEagerLoadingError]: ProductModelsClass is associated to ProductsClass using an alias. You must use the 'as' keyword to specify the alias within your include statement.
318
+ at Function._getIncludedAssociation (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:722:13)
319
+ at Function._validateIncludedElement (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:614:53)
320
+ at C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:509:37
321
+ at Array.map (<anonymous>)
322
+ at Function._validateIncludedElements (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:504:39)
323
+ at Function.findAll (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1723:12)
324
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
325
+ [2021-11-30T13.18.59.826] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
326
+ [2021-11-30T13.18.59.827] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
327
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
328
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
329
+ index: 0,
330
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
331
+ groups: undefined
332
+ ]
333
+ [2021-11-30T13.18.59.829] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
334
+ [2021-11-30T13.18.59.900] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
335
+ user: 1,
336
+ ip: '::1',
337
+ agent: 'PostmanRuntime/7.28.4',
338
+ iat: 1638267150,
339
+ exp: 1638270750
384
340
  }
385
- [2021-08-17T13.08.50.664] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
386
- [2021-08-17T13.08.56.316] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
387
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
388
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
389
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:49:22)
390
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:41:43)
391
- at Generator.next (<anonymous>)
392
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:8:71
393
- at new Promise (<anonymous>)
394
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:4:12)
395
- at SiteController.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:24:16)
396
- at BaseChyz.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts:235:48) {
397
- statusCode: 500
341
+ [2021-11-30T13.18.59.901] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
342
+ [2021-11-30T13.18.59.901] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
343
+ [2021-11-30T13.18.59.902] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - EagerLoadingError [SequelizeEagerLoadingError]: ProductModelsClass is associated to ProductsClass using an alias. You must use the 'as' keyword to specify the alias within your include statement.
344
+ at Function._getIncludedAssociation (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:722:13)
345
+ at Function._validateIncludedElement (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:614:53)
346
+ at C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:509:37
347
+ at Array.map (<anonymous>)
348
+ at Function._validateIncludedElements (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:504:39)
349
+ at Function.findAll (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1723:12)
350
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
351
+ [2021-11-30T13.24.19.903] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
352
+ [2021-11-30T13.24.19.909] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
353
+ [2021-11-30T13.24.19.921] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
354
+ [2021-11-30T13.24.19.932] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
355
+ [2021-11-30T13.24.19.934] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
356
+ [2021-11-30T13.24.19.935] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
357
+ [2021-11-30T13.24.19.936] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
358
+ [2021-11-30T13.24.19.937] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
359
+ [2021-11-30T13.24.19.937] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
360
+ [2021-11-30T13.24.20.021] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
361
+ [2021-11-30T13.24.20.021] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
362
+ [2021-11-30T13.24.20.022] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
363
+ [2021-11-30T13.24.20.070] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
364
+ [2021-11-30T13.24.20.070] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
365
+ [2021-11-30T13.24.20.209] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
366
+ [2021-11-30T13.24.20.209] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
367
+ [2021-11-30T13.24.20.210] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
368
+ [2021-11-30T13.24.20.210] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
369
+ [2021-11-30T13.24.20.211] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
370
+ [2021-11-30T13.24.20.211] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
371
+ [2021-11-30T13.24.20.214] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
372
+ [2021-11-30T13.24.20.214] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
373
+ [2021-11-30T13.24.20.215] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
374
+ [2021-11-30T13.24.20.220] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
375
+ [2021-11-30T13.24.20.432] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
376
+ [2021-11-30T13.24.20.434] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
377
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
378
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
379
+ index: 0,
380
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
381
+ groups: undefined
382
+ ]
383
+ [2021-11-30T13.24.20.713] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
384
+ [2021-11-30T13.24.20.781] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
385
+ [2021-11-30T13.24.20.782] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
386
+ user: 1,
387
+ ip: '::1',
388
+ agent: 'PostmanRuntime/7.28.4',
389
+ iat: 1638267150,
390
+ exp: 1638270750
398
391
  }
399
- [2021-08-17T13.09.19.723] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
400
- [2021-08-17T13.09.19.726] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
401
- [2021-08-17T13.09.19.727] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
402
- [2021-08-17T13.09.19.727] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout
403
- [2021-08-17T13.09.19.728] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/logout2
404
- [2021-08-17T13.09.19.784] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
405
- [2021-08-17T13.09.19.784] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
406
- [2021-08-17T13.09.19.785] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
407
- [2021-08-17T13.09.19.785] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
408
- [2021-08-17T13.09.19.786] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
409
- [2021-08-17T13.09.19.892] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
410
- [2021-08-17T13.09.19.895] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
411
- [2021-08-17T13.09.19.895] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
412
- [2021-08-17T13.09.26.790] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
413
- [2021-08-17T13.09.30.917] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID undefined
414
- [2021-08-17T14.16.37.070] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
415
- [2021-08-17T14.16.37.073] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
416
- [2021-08-17T14.16.37.074] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
417
- [2021-08-17T14.16.37.131] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
418
- [2021-08-17T14.16.37.131] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
419
- [2021-08-17T14.16.37.200] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
420
- [2021-08-17T14.16.37.200] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
421
- [2021-08-17T14.16.37.201] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
422
- [2021-08-17T14.16.37.201] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
423
- [2021-08-17T14.16.37.202] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
424
- [2021-08-17T14.16.37.325] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
425
- [2021-08-17T14.16.37.327] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
426
- [2021-08-17T14.16.37.328] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
427
- [2021-08-17T14.16.39.618] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
428
- [2021-08-17T14.16.39.620] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID undefined
429
- [2021-08-17T14.17.17.003] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
430
- [2021-08-17T14.17.17.005] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
431
- [2021-08-17T14.17.17.005] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
432
- [2021-08-17T14.17.17.056] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
433
- [2021-08-17T14.17.17.056] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
434
- [2021-08-17T14.17.17.102] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
435
- [2021-08-17T14.17.17.102] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
436
- [2021-08-17T14.17.17.103] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
437
- [2021-08-17T14.17.17.103] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
438
- [2021-08-17T14.17.17.104] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
439
- [2021-08-17T14.17.17.193] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
440
- [2021-08-17T14.17.17.195] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
441
- [2021-08-17T14.17.17.196] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
442
- [2021-08-17T14.17.18.220] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
443
- [2021-08-17T14.17.18.222] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
444
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
445
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
446
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:49:22)
447
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:42:43)
448
- at Generator.next (<anonymous>)
449
- at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:5:58)
450
- at processTicksAndRejections (internal/process/task_queues.js:93:5) {
451
- statusCode: 500
392
+ [2021-11-30T13.24.20.783] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
393
+ [2021-11-30T13.24.20.784] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
394
+ [2021-11-30T13.24.20.786] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - EagerLoadingError [SequelizeEagerLoadingError]: ProductModelsClass is associated to ProductsClass using an alias. You must use the 'as' keyword to specify the alias within your include statement.
395
+ at Function._getIncludedAssociation (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:722:13)
396
+ at Function._validateIncludedElement (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:614:53)
397
+ at C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:509:37
398
+ at Array.map (<anonymous>)
399
+ at Function._validateIncludedElements (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:504:39)
400
+ at Function.findAll (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1723:12)
401
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
402
+ [2021-11-30T13.24.20.847] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
403
+ [2021-11-30T13.24.21.699] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
404
+ [2021-11-30T13.24.21.700] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
405
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
406
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
407
+ index: 0,
408
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
409
+ groups: undefined
410
+ ]
411
+ [2021-11-30T13.24.21.702] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
412
+ [2021-11-30T13.24.21.766] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
413
+ user: 1,
414
+ ip: '::1',
415
+ agent: 'PostmanRuntime/7.28.4',
416
+ iat: 1638267150,
417
+ exp: 1638270750
452
418
  }
453
- [2021-08-17T14.17.29.816] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
454
- [2021-08-17T14.17.29.818] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
455
- [2021-08-17T14.17.29.819] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
456
- [2021-08-17T14.17.29.873] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
457
- [2021-08-17T14.17.29.874] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
458
- [2021-08-17T14.17.29.919] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
459
- [2021-08-17T14.17.29.919] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
460
- [2021-08-17T14.17.29.920] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
461
- [2021-08-17T14.17.29.920] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
462
- [2021-08-17T14.17.29.921] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
463
- [2021-08-17T14.17.30.014] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
464
- [2021-08-17T14.17.30.016] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
465
- [2021-08-17T14.17.30.017] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
466
- [2021-08-17T14.17.30.087] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
467
- [2021-08-17T14.17.30.089] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
468
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
469
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
470
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:49:22)
471
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:42:43)
472
- at Generator.next (<anonymous>)
473
- at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:5:58)
474
- at processTicksAndRejections (internal/process/task_queues.js:93:5) {
475
- statusCode: 500
419
+ [2021-11-30T13.24.21.767] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
420
+ [2021-11-30T13.24.21.768] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
421
+ [2021-11-30T13.24.21.768] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - EagerLoadingError [SequelizeEagerLoadingError]: ProductModelsClass is associated to ProductsClass using an alias. You must use the 'as' keyword to specify the alias within your include statement.
422
+ at Function._getIncludedAssociation (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:722:13)
423
+ at Function._validateIncludedElement (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:614:53)
424
+ at C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:509:37
425
+ at Array.map (<anonymous>)
426
+ at Function._validateIncludedElements (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:504:39)
427
+ at Function.findAll (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1723:12)
428
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
429
+ [2021-11-30T13.24.27.801] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
430
+ [2021-11-30T13.24.27.806] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
431
+ [2021-11-30T13.24.27.817] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
432
+ [2021-11-30T13.24.27.826] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
433
+ [2021-11-30T13.24.27.828] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
434
+ [2021-11-30T13.24.27.830] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
435
+ [2021-11-30T13.24.27.830] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
436
+ [2021-11-30T13.24.27.831] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
437
+ [2021-11-30T13.24.27.831] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
438
+ [2021-11-30T13.24.27.913] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
439
+ [2021-11-30T13.24.27.914] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
440
+ [2021-11-30T13.24.27.915] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
441
+ [2021-11-30T13.24.27.956] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
442
+ [2021-11-30T13.24.27.956] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
443
+ [2021-11-30T13.24.28.076] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
444
+ [2021-11-30T13.24.28.077] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
445
+ [2021-11-30T13.24.28.077] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
446
+ [2021-11-30T13.24.28.077] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
447
+ [2021-11-30T13.24.28.078] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
448
+ [2021-11-30T13.24.28.079] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
449
+ [2021-11-30T13.24.28.081] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
450
+ [2021-11-30T13.24.28.082] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
451
+ [2021-11-30T13.24.28.082] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
452
+ [2021-11-30T13.24.28.086] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
453
+ [2021-11-30T13.24.28.273] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
454
+ [2021-11-30T13.24.28.274] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
455
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
456
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
457
+ index: 0,
458
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
459
+ groups: undefined
460
+ ]
461
+ [2021-11-30T13.24.28.764] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
462
+ [2021-11-30T13.24.28.766] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
463
+ [2021-11-30T13.24.28.827] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
464
+ [2021-11-30T13.24.28.830] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
465
+ user: 1,
466
+ ip: '::1',
467
+ agent: 'PostmanRuntime/7.28.4',
468
+ iat: 1638267150,
469
+ exp: 1638270750
476
470
  }
477
- [2021-08-17T14.17.39.088] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
478
- [2021-08-17T14.17.39.090] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
479
- [2021-08-17T14.17.39.090] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
480
- [2021-08-17T14.17.39.144] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
481
- [2021-08-17T14.17.39.144] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
482
- [2021-08-17T14.17.39.189] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
483
- [2021-08-17T14.17.39.189] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
484
- [2021-08-17T14.17.39.190] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
485
- [2021-08-17T14.17.39.190] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
486
- [2021-08-17T14.17.39.191] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
487
- [2021-08-17T14.17.39.280] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
488
- [2021-08-17T14.17.39.283] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
489
- [2021-08-17T14.17.39.283] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
490
- [2021-08-17T14.17.41.195] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
491
- [2021-08-17T14.17.41.197] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
492
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
493
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
494
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:54:14)
495
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:42:43)
496
- at Generator.next (<anonymous>)
497
- at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:5:58)
498
- at processTicksAndRejections (internal/process/task_queues.js:93:5) {
499
- statusCode: 500
471
+ [2021-11-30T13.24.28.831] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
472
+ [2021-11-30T13.24.28.832] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
473
+ [2021-11-30T13.24.28.835] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "ProductsClass"."id", "ProductsClass"."title", "ProductsClass"."model_id", "ProductsClass"."properties", "ProductModelsClass"."id" AS "ProductModelsClass.id", "ProductModelsClass"."title" AS "ProductModelsClass.title", "ProductModelsClass"."stock_code" AS "ProductModelsClass.stock_code", "ProductModelsClass"."properties" AS "ProductModelsClass.properties" FROM "products" AS "ProductsClass" LEFT OUTER JOIN "models" AS "ProductModelsClass" ON "ProductsClass"."model_id" = "ProductModelsClass"."id";
474
+ [2021-11-30T13.25.44.676] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
475
+ [2021-11-30T13.25.44.677] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
476
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
477
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
478
+ index: 0,
479
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
480
+ groups: undefined
481
+ ]
482
+ [2021-11-30T13.25.44.934] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
483
+ [2021-11-30T13.25.45.002] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
484
+ user: 1,
485
+ ip: '::1',
486
+ agent: 'PostmanRuntime/7.28.4',
487
+ iat: 1638267150,
488
+ exp: 1638270750
500
489
  }
501
- [2021-08-17T14.20.49.428] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
502
- [2021-08-17T14.20.49.429] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
503
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
504
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
505
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:54:14)
506
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:42:43)
507
- at Generator.next (<anonymous>)
508
- at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:5:58)
509
- at processTicksAndRejections (internal/process/task_queues.js:93:5) {
510
- statusCode: 500
490
+ [2021-11-30T13.25.45.003] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
491
+ [2021-11-30T13.25.45.004] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
492
+ [2021-11-30T13.25.45.005] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "ProductsClass"."id", "ProductsClass"."title", "ProductsClass"."model_id", "ProductsClass"."properties", "ProductModelsClass"."id" AS "ProductModelsClass.id", "ProductModelsClass"."title" AS "ProductModelsClass.title", "ProductModelsClass"."stock_code" AS "ProductModelsClass.stock_code", "ProductModelsClass"."properties" AS "ProductModelsClass.properties" FROM "products" AS "ProductsClass" LEFT OUTER JOIN "models" AS "ProductModelsClass" ON "ProductsClass"."model_id" = "ProductModelsClass"."id";
493
+ [2021-11-30T13.25.46.229] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
494
+ [2021-11-30T13.25.46.230] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
495
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
496
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
497
+ index: 0,
498
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
499
+ groups: undefined
500
+ ]
501
+ [2021-11-30T13.25.46.232] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
502
+ [2021-11-30T13.25.46.295] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
503
+ user: 1,
504
+ ip: '::1',
505
+ agent: 'PostmanRuntime/7.28.4',
506
+ iat: 1638267150,
507
+ exp: 1638270750
511
508
  }
512
- [2021-08-17T14.25.04.095] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
513
- [2021-08-17T14.25.04.096] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
514
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
515
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
516
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:54:14)
517
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:42:43)
518
- at Generator.next (<anonymous>)
519
- at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:5:58)
520
- at processTicksAndRejections (internal/process/task_queues.js:93:5) {
521
- statusCode: 500
509
+ [2021-11-30T13.25.46.296] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
510
+ [2021-11-30T13.25.46.296] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_3
511
+ [2021-11-30T13.25.46.297] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "ProductsClass"."id", "ProductsClass"."title", "ProductsClass"."model_id", "ProductsClass"."properties", "ProductModelsClass"."id" AS "ProductModelsClass.id", "ProductModelsClass"."title" AS "ProductModelsClass.title", "ProductModelsClass"."stock_code" AS "ProductModelsClass.stock_code", "ProductModelsClass"."properties" AS "ProductModelsClass.properties" FROM "products" AS "ProductsClass" LEFT OUTER JOIN "models" AS "ProductModelsClass" ON "ProductsClass"."model_id" = "ProductModelsClass"."id";
512
+ [2021-11-30T13.25.49.726] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
513
+ [2021-11-30T13.25.49.727] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
514
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
515
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
516
+ index: 0,
517
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
518
+ groups: undefined
519
+ ]
520
+ [2021-11-30T13.25.49.729] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
521
+ [2021-11-30T13.25.49.791] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
522
+ user: 1,
523
+ ip: '::1',
524
+ agent: 'PostmanRuntime/7.28.4',
525
+ iat: 1638267150,
526
+ exp: 1638270750
522
527
  }
523
- [2021-08-17T14.25.09.166] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
524
- [2021-08-17T14.25.09.168] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
525
- [2021-08-17T14.25.09.169] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
526
- [2021-08-17T14.25.09.221] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
527
- [2021-08-17T14.25.09.221] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
528
- [2021-08-17T14.25.09.266] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
529
- [2021-08-17T14.25.09.267] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
530
- [2021-08-17T14.25.09.267] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
531
- [2021-08-17T14.25.09.268] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
532
- [2021-08-17T14.25.09.268] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
533
- [2021-08-17T14.25.09.362] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
534
- [2021-08-17T14.25.09.364] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
535
- [2021-08-17T14.25.09.365] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
536
- [2021-08-17T14.25.09.928] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
537
- [2021-08-17T14.25.09.929] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
538
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
539
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
540
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:54:14)
541
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:42:43)
542
- at Generator.next (<anonymous>)
543
- at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:5:58)
544
- at processTicksAndRejections (internal/process/task_queues.js:93:5) {
545
- statusCode: 500
528
+ [2021-11-30T13.25.49.792] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
529
+ [2021-11-30T13.25.49.793] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_4
530
+ [2021-11-30T13.25.49.794] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "ProductsClass"."id", "ProductsClass"."title", "ProductsClass"."model_id", "ProductsClass"."properties", "ProductModelsClass"."id" AS "ProductModelsClass.id", "ProductModelsClass"."title" AS "ProductModelsClass.title", "ProductModelsClass"."stock_code" AS "ProductModelsClass.stock_code", "ProductModelsClass"."properties" AS "ProductModelsClass.properties" FROM "products" AS "ProductsClass" LEFT OUTER JOIN "models" AS "ProductModelsClass" ON "ProductsClass"."model_id" = "ProductModelsClass"."id";
531
+ [2021-11-30T13.25.53.444] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
532
+ [2021-11-30T13.25.53.444] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
533
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
534
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
535
+ index: 0,
536
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
537
+ groups: undefined
538
+ ]
539
+ [2021-11-30T13.25.53.446] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
540
+ [2021-11-30T13.25.53.509] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
541
+ user: 1,
542
+ ip: '::1',
543
+ agent: 'PostmanRuntime/7.28.4',
544
+ iat: 1638267150,
545
+ exp: 1638270750
546
546
  }
547
- [2021-08-17T14.25.20.515] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
548
- [2021-08-17T14.25.20.516] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
549
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
550
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
551
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:54:14)
552
- at SiteController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:42:43)
553
- at Generator.next (<anonymous>)
554
- at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\base\Controller.ts:5:58)
555
- at processTicksAndRejections (internal/process/task_queues.js:93:5) {
556
- statusCode: 500
547
+ [2021-11-30T13.25.53.510] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
548
+ [2021-11-30T13.25.53.510] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_5
549
+ [2021-11-30T13.25.53.511] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "ProductsClass"."id", "ProductsClass"."title", "ProductsClass"."model_id", "ProductsClass"."properties", "ProductModelsClass"."id" AS "ProductModelsClass.id", "ProductModelsClass"."title" AS "ProductModelsClass.title", "ProductModelsClass"."stock_code" AS "ProductModelsClass.stock_code", "ProductModelsClass"."properties" AS "ProductModelsClass.properties" FROM "products" AS "ProductsClass" LEFT OUTER JOIN "models" AS "ProductModelsClass" ON "ProductsClass"."model_id" = "ProductModelsClass"."id";
550
+ [2021-11-30T13.26.05.759] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
551
+ [2021-11-30T13.26.05.764] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
552
+ [2021-11-30T13.26.05.774] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
553
+ [2021-11-30T13.26.05.785] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
554
+ [2021-11-30T13.26.05.790] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
555
+ [2021-11-30T13.26.05.791] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
556
+ [2021-11-30T13.26.05.792] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
557
+ [2021-11-30T13.26.05.792] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
558
+ [2021-11-30T13.26.05.793] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
559
+ [2021-11-30T13.26.05.876] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
560
+ [2021-11-30T13.26.05.877] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
561
+ [2021-11-30T13.26.05.877] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
562
+ [2021-11-30T13.26.05.916] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
563
+ [2021-11-30T13.26.05.917] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
564
+ [2021-11-30T13.26.06.046] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
565
+ [2021-11-30T13.26.06.046] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
566
+ [2021-11-30T13.26.06.047] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
567
+ [2021-11-30T13.26.06.047] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
568
+ [2021-11-30T13.26.06.047] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
569
+ [2021-11-30T13.26.06.048] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
570
+ [2021-11-30T13.26.06.051] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
571
+ [2021-11-30T13.26.06.051] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
572
+ [2021-11-30T13.26.06.052] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
573
+ [2021-11-30T13.26.06.056] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
574
+ [2021-11-30T13.26.06.750] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
575
+ [2021-11-30T13.26.06.815] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
576
+ [2021-11-30T13.26.06.935] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
577
+ [2021-11-30T13.26.06.936] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
578
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
579
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
580
+ index: 0,
581
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
582
+ groups: undefined
583
+ ]
584
+ [2021-11-30T13.26.06.943] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
585
+ [2021-11-30T13.26.07.011] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
586
+ user: 1,
587
+ ip: '::1',
588
+ agent: 'PostmanRuntime/7.28.4',
589
+ iat: 1638267150,
590
+ exp: 1638270750
557
591
  }
558
- [2021-08-17T14.25.30.606] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
559
- [2021-08-17T14.25.30.608] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
560
- [2021-08-17T14.25.30.609] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
561
- [2021-08-17T14.25.30.680] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
562
- [2021-08-17T14.25.30.680] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
563
- [2021-08-17T14.25.30.738] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
564
- [2021-08-17T14.25.30.739] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
565
- [2021-08-17T14.25.30.739] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
566
- [2021-08-17T14.25.30.740] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
567
- [2021-08-17T14.25.30.740] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
568
- [2021-08-17T14.25.30.847] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
569
- [2021-08-17T14.25.30.851] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
570
- [2021-08-17T14.25.30.851] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
571
- [2021-08-17T14.25.35.199] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
572
- [2021-08-17T14.35.39.840] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
573
- [2021-08-17T14.35.39.843] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
574
- [2021-08-17T14.35.39.843] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
575
- [2021-08-17T14.36.08.383] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
576
- [2021-08-17T14.36.08.386] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
577
- [2021-08-17T14.36.08.387] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
578
- [2021-08-17T14.36.35.455] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
579
- [2021-08-17T14.36.35.457] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
580
- [2021-08-17T14.36.35.458] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
581
- [2021-08-17T14.36.35.509] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
582
- [2021-08-17T14.36.35.509] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
583
- [2021-08-17T14.36.35.555] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
584
- [2021-08-17T14.36.35.555] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
585
- [2021-08-17T14.36.35.556] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
586
- [2021-08-17T14.36.35.556] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
587
- [2021-08-17T14.36.35.557] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
588
- [2021-08-17T14.36.35.650] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
589
- [2021-08-17T14.36.35.652] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
590
- [2021-08-17T14.36.35.652] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
591
- [2021-08-17T14.36.44.325] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
592
- [2021-08-17T14.36.44.327] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID undefined
593
- [2021-08-17T14.38.00.717] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
594
- [2021-08-17T14.38.00.719] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
595
- [2021-08-17T14.38.00.720] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
596
- [2021-08-17T14.38.00.771] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
597
- [2021-08-17T14.38.00.771] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
598
- [2021-08-17T14.38.00.817] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
599
- [2021-08-17T14.38.00.817] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
600
- [2021-08-17T14.38.00.818] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
601
- [2021-08-17T14.38.00.818] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
602
- [2021-08-17T14.38.00.818] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
603
- [2021-08-17T14.38.00.905] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
604
- [2021-08-17T14.38.00.911] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
605
- [2021-08-17T14.38.00.913] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
606
- [2021-08-17T14.38.00.914] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
607
- [2021-08-17T14.38.17.626] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
608
- [2021-08-17T14.38.17.628] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID undefined
609
- [2021-08-17T14.38.54.121] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
610
- [2021-08-17T14.38.54.123] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
611
- [2021-08-17T14.38.54.124] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
612
- [2021-08-17T14.38.54.175] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
613
- [2021-08-17T14.38.54.175] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
614
- [2021-08-17T14.38.54.219] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
615
- [2021-08-17T14.38.54.220] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
616
- [2021-08-17T14.38.54.220] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
617
- [2021-08-17T14.38.54.221] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
618
- [2021-08-17T14.38.54.221] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
619
- [2021-08-17T14.38.54.308] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
620
- [2021-08-17T14.38.54.314] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
621
- [2021-08-17T14.38.54.317] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
622
- [2021-08-17T14.38.54.317] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
623
- [2021-08-17T14.38.54.810] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
624
- [2021-08-17T14.38.54.812] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID undefined
625
- [2021-08-17T14.38.56.286] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
626
- [2021-08-17T14.38.56.287] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID undefined
627
- [2021-08-17T14.39.55.475] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
628
- [2021-08-17T14.39.55.477] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
629
- [2021-08-17T14.39.55.477] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
630
- [2021-08-17T14.39.55.529] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
631
- [2021-08-17T14.39.55.530] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
632
- [2021-08-17T14.39.55.575] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
633
- [2021-08-17T14.39.55.575] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
634
- [2021-08-17T14.39.55.575] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
635
- [2021-08-17T14.39.55.576] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
636
- [2021-08-17T14.39.55.576] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
637
- [2021-08-17T14.39.55.666] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
638
- [2021-08-17T14.39.55.673] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
639
- [2021-08-17T14.39.55.675] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
640
- [2021-08-17T14.39.55.676] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
641
- [2021-08-17T14.39.55.941] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
642
- [2021-08-17T14.39.55.942] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
643
- [2021-08-17T14.41.08.826] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
644
- [2021-08-17T14.41.08.827] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_4
645
- [2021-08-17T14.41.08.828] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
646
- [2021-08-17T14.41.21.896] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
647
- [2021-08-17T14.41.21.898] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
648
- [2021-08-17T14.41.21.898] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
649
- [2021-08-17T14.41.21.957] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
650
- [2021-08-17T14.41.21.960] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
651
- [2021-08-17T14.41.22.008] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
652
- [2021-08-17T14.41.22.009] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
653
- [2021-08-17T14.41.22.009] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
654
- [2021-08-17T14.41.22.009] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
655
- [2021-08-17T14.41.22.010] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
656
- [2021-08-17T14.41.22.107] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
657
- [2021-08-17T14.41.22.113] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
658
- [2021-08-17T14.41.22.116] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
659
- [2021-08-17T14.41.22.116] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
660
- [2021-08-17T14.41.22.196] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
661
- [2021-08-17T14.41.22.198] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
662
- [2021-08-17T14.41.22.199] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
663
- [2021-08-17T14.41.23.746] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
664
- [2021-08-17T14.41.23.747] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
665
- [2021-08-17T14.41.23.747] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
666
- [2021-08-17T14.41.44.885] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
667
- [2021-08-17T14.41.44.888] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
668
- [2021-08-17T14.41.44.888] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
669
- [2021-08-17T14.41.44.955] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
670
- [2021-08-17T14.41.44.955] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
671
- [2021-08-17T14.41.45.024] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
672
- [2021-08-17T14.41.45.025] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
673
- [2021-08-17T14.41.45.025] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
674
- [2021-08-17T14.41.45.026] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
675
- [2021-08-17T14.41.45.026] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
676
- [2021-08-17T14.41.45.141] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
677
- [2021-08-17T14.41.45.150] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
678
- [2021-08-17T14.41.45.153] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
679
- [2021-08-17T14.41.45.154] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
680
- [2021-08-17T14.41.45.435] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
681
- [2021-08-17T14.41.45.437] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
682
- [2021-08-17T14.41.45.438] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
683
- [2021-08-17T14.41.46.562] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
684
- [2021-08-17T14.41.46.563] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
685
- [2021-08-17T14.41.46.563] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
686
- [2021-08-17T14.42.00.995] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
687
- [2021-08-17T14.42.00.997] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
688
- [2021-08-17T14.42.00.998] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
689
- [2021-08-17T14.42.01.048] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
690
- [2021-08-17T14.42.01.048] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
691
- [2021-08-17T14.42.01.094] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
692
- [2021-08-17T14.42.01.095] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
693
- [2021-08-17T14.42.01.095] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
694
- [2021-08-17T14.42.01.095] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
695
- [2021-08-17T14.42.01.096] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
696
- [2021-08-17T14.42.01.182] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
697
- [2021-08-17T14.42.01.189] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
698
- [2021-08-17T14.42.01.191] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
699
- [2021-08-17T14.42.01.191] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
700
- [2021-08-17T14.42.02.479] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
701
- [2021-08-17T14.42.02.481] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
702
- [2021-08-17T14.42.02.483] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
703
- [2021-08-17T14.42.05.900] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
704
- [2021-08-17T14.42.05.901] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
705
- [2021-08-17T14.42.05.901] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
706
- [2021-08-17T14.42.12.393] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
707
- [2021-08-17T14.42.12.394] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_3
708
- [2021-08-17T14.42.12.394] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
709
- [2021-08-17T14.42.13.797] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
710
- [2021-08-17T14.42.13.798] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_4
711
- [2021-08-17T14.42.13.799] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
712
- [2021-08-17T14.42.26.255] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
713
- [2021-08-17T14.42.26.257] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
714
- [2021-08-17T14.42.26.257] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
715
- [2021-08-17T14.42.26.310] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
716
- [2021-08-17T14.42.26.310] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
717
- [2021-08-17T14.42.26.354] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
718
- [2021-08-17T14.42.26.354] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
719
- [2021-08-17T14.42.26.355] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
720
- [2021-08-17T14.42.26.355] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
721
- [2021-08-17T14.42.26.356] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
722
- [2021-08-17T14.42.26.442] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
723
- [2021-08-17T14.42.26.449] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
724
- [2021-08-17T14.42.26.451] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
725
- [2021-08-17T14.42.26.452] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
726
- [2021-08-17T14.42.33.349] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
727
- [2021-08-17T14.42.33.351] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
728
- [2021-08-17T14.42.33.351] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
729
- [2021-08-17T14.42.33.403] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
730
- [2021-08-17T14.42.33.403] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
731
- [2021-08-17T14.42.33.449] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
732
- [2021-08-17T14.42.33.449] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/
733
- [2021-08-17T14.42.33.450] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
734
- [2021-08-17T14.42.33.450] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
735
- [2021-08-17T14.42.33.450] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
736
- [2021-08-17T14.42.33.538] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
737
- [2021-08-17T14.42.33.545] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
738
- [2021-08-17T14.42.33.547] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
739
- [2021-08-17T14.42.33.547] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
740
- [2021-08-17T14.42.46.292] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
741
- [2021-08-17T14.42.46.295] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
742
- [2021-08-17T14.42.46.295] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
743
- [2021-08-17T14.42.46.348] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
744
- [2021-08-17T14.42.46.348] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
745
- [2021-08-17T14.42.46.393] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
746
- [2021-08-17T14.42.46.393] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
747
- [2021-08-17T14.42.46.394] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
748
- [2021-08-17T14.42.46.394] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
749
- [2021-08-17T14.42.46.395] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
750
- [2021-08-17T14.42.46.481] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
751
- [2021-08-17T14.42.46.488] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
752
- [2021-08-17T14.42.46.490] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
753
- [2021-08-17T14.42.46.490] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
754
- [2021-08-17T14.42.47.737] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
755
- [2021-08-17T14.42.47.739] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
756
- [2021-08-17T14.42.47.740] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
757
- [2021-08-17T14.42.49.449] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
758
- [2021-08-17T14.42.49.449] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
759
- [2021-08-17T14.42.49.450] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
760
- [2021-08-17T14.43.20.770] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
761
- [2021-08-17T14.43.20.773] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
762
- [2021-08-17T14.43.20.774] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
763
- [2021-08-17T14.43.20.842] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
764
- [2021-08-17T14.43.20.842] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
765
- [2021-08-17T14.43.20.901] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
766
- [2021-08-17T14.43.20.902] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
767
- [2021-08-17T14.43.20.902] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
768
- [2021-08-17T14.43.20.903] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
769
- [2021-08-17T14.43.20.903] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
770
- [2021-08-17T14.43.21.004] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
771
- [2021-08-17T14.43.21.010] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
772
- [2021-08-17T14.43.21.013] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
773
- [2021-08-17T14.43.21.014] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
774
- [2021-08-17T14.43.58.758] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
775
- [2021-08-17T14.43.58.762] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
776
- [2021-08-17T14.43.58.762] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
777
- [2021-08-17T14.43.58.831] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
778
- [2021-08-17T14.43.58.832] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
779
- [2021-08-17T14.43.58.888] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
780
- [2021-08-17T14.43.58.888] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
781
- [2021-08-17T14.43.58.889] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
782
- [2021-08-17T14.43.58.889] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
783
- [2021-08-17T14.43.58.890] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
784
- [2021-08-17T14.43.58.996] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
785
- [2021-08-17T14.43.59.002] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
786
- [2021-08-17T14.43.59.005] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
787
- [2021-08-17T14.43.59.006] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
788
- [2021-08-17T14.43.59.080] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
789
- [2021-08-17T14.44.00.601] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
790
- [2021-08-17T14.44.00.603] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
791
- [2021-08-17T14.44.17.374] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
792
- [2021-08-17T14.44.17.376] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
793
- [2021-08-17T14.44.17.377] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
794
- [2021-08-17T14.44.17.428] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
795
- [2021-08-17T14.44.17.428] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
796
- [2021-08-17T14.44.17.476] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
797
- [2021-08-17T14.44.17.476] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
798
- [2021-08-17T14.44.17.476] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
799
- [2021-08-17T14.44.17.477] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
800
- [2021-08-17T14.44.17.477] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
801
- [2021-08-17T14.44.17.563] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
802
- [2021-08-17T14.44.17.569] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
803
- [2021-08-17T14.44.17.571] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
804
- [2021-08-17T14.44.17.572] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
805
- [2021-08-17T14.44.20.103] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
806
- [2021-08-17T14.44.20.106] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
807
- [2021-08-17T14.44.20.107] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
808
- [2021-08-17T14.44.51.876] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
809
- [2021-08-17T14.44.51.878] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
810
- [2021-08-17T14.44.51.878] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
811
- [2021-08-17T14.44.51.930] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
812
- [2021-08-17T14.44.51.931] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
813
- [2021-08-17T14.44.51.977] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
814
- [2021-08-17T14.44.51.978] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
815
- [2021-08-17T14.44.51.978] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
816
- [2021-08-17T14.44.51.978] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
817
- [2021-08-17T14.44.51.979] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
818
- [2021-08-17T14.44.52.066] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
819
- [2021-08-17T14.44.52.073] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
820
- [2021-08-17T14.44.52.075] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
821
- [2021-08-17T14.44.52.076] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
822
- [2021-08-17T14.44.52.462] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
823
- [2021-08-17T14.44.52.463] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
824
- [2021-08-17T14.44.52.464] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
825
- [2021-08-17T14.44.54.834] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
826
- [2021-08-17T14.44.54.835] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
827
- [2021-08-17T14.44.54.835] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
828
- [2021-08-17T14.45.22.925] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
829
- [2021-08-17T14.45.22.926] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_3
830
- [2021-08-17T14.45.22.926] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
831
- [2021-08-17T14.45.58.801] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
832
- [2021-08-17T14.45.58.804] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
833
- [2021-08-17T14.45.58.804] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
834
- [2021-08-17T14.45.58.855] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
835
- [2021-08-17T14.45.58.855] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
836
- [2021-08-17T14.45.58.900] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
837
- [2021-08-17T14.45.58.900] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
838
- [2021-08-17T14.45.58.901] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
839
- [2021-08-17T14.45.58.901] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
840
- [2021-08-17T14.45.58.901] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
841
- [2021-08-17T14.45.58.988] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
842
- [2021-08-17T14.45.58.995] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
843
- [2021-08-17T14.45.58.998] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
844
- [2021-08-17T14.45.58.998] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
845
- [2021-08-17T14.45.59.908] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
846
- [2021-08-17T14.45.59.910] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
847
- [2021-08-17T14.45.59.911] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
848
- [2021-08-17T14.46.11.358] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
849
- [2021-08-17T14.46.11.358] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
850
- [2021-08-17T14.46.11.359] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
851
- [2021-08-17T14.46.16.175] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
852
- [2021-08-17T14.46.16.177] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
853
- [2021-08-17T14.46.16.177] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
854
- [2021-08-17T14.46.16.231] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
855
- [2021-08-17T14.46.16.231] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
856
- [2021-08-17T14.46.16.277] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
857
- [2021-08-17T14.46.16.277] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
858
- [2021-08-17T14.46.16.277] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
859
- [2021-08-17T14.46.16.278] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
860
- [2021-08-17T14.46.16.278] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
861
- [2021-08-17T14.46.16.364] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
862
- [2021-08-17T14.46.16.370] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
863
- [2021-08-17T14.46.16.372] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
864
- [2021-08-17T14.46.16.373] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
865
- [2021-08-17T14.46.17.303] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
866
- [2021-08-17T14.46.17.305] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
867
- [2021-08-17T14.46.17.306] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
868
- [2021-08-17T14.46.47.495] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
869
- [2021-08-17T14.46.47.498] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
870
- [2021-08-17T14.46.47.498] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
871
- [2021-08-17T14.46.47.562] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
872
- [2021-08-17T14.46.47.563] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
873
- [2021-08-17T14.46.47.622] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
874
- [2021-08-17T14.46.47.622] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
875
- [2021-08-17T14.46.47.623] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
876
- [2021-08-17T14.46.47.623] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
877
- [2021-08-17T14.46.47.624] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
878
- [2021-08-17T14.46.47.723] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
879
- [2021-08-17T14.46.47.730] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
880
- [2021-08-17T14.46.47.732] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
881
- [2021-08-17T14.46.47.733] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
882
- [2021-08-17T14.56.49.232] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
883
- [2021-08-17T14.56.49.235] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
884
- [2021-08-17T14.56.49.236] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
885
- [2021-08-17T14.56.49.297] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
886
- [2021-08-17T14.56.49.297] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
887
- [2021-08-17T14.56.49.359] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
888
- [2021-08-17T14.56.49.360] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
889
- [2021-08-17T14.56.49.360] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
890
- [2021-08-17T14.56.49.360] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
891
- [2021-08-17T14.56.49.361] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
892
- [2021-08-17T14.56.49.467] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
893
- [2021-08-17T14.56.49.473] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
894
- [2021-08-17T14.56.49.476] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
895
- [2021-08-17T14.56.49.476] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
896
- [2021-08-17T14.56.55.100] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
897
- [2021-08-17T14.57.12.554] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
898
- [2021-08-17T14.57.12.556] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
899
- [2021-08-17T14.58.43.610] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
900
- [2021-08-17T14.58.43.612] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
901
- [2021-08-17T14.58.43.613] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
902
- [2021-08-17T14.58.43.672] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
903
- [2021-08-17T14.58.43.672] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
904
- [2021-08-17T14.58.43.735] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
905
- [2021-08-17T14.58.43.735] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
906
- [2021-08-17T14.58.43.736] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
907
- [2021-08-17T14.58.43.736] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
908
- [2021-08-17T14.58.43.737] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
909
- [2021-08-17T14.58.43.842] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
910
- [2021-08-17T14.58.43.849] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
911
- [2021-08-17T14.58.43.852] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
912
- [2021-08-17T14.58.43.853] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
913
- [2021-08-17T14.59.18.059] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
914
- [2021-08-17T14.59.18.062] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
915
- [2021-08-17T14.59.18.062] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
916
- [2021-08-17T14.59.18.128] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
917
- [2021-08-17T14.59.18.129] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
918
- [2021-08-17T14.59.18.193] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
919
- [2021-08-17T14.59.18.193] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
920
- [2021-08-17T14.59.18.194] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
921
- [2021-08-17T14.59.18.195] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
922
- [2021-08-17T14.59.18.195] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
923
- [2021-08-17T14.59.18.302] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
924
- [2021-08-17T14.59.18.309] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
925
- [2021-08-17T14.59.18.312] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
926
- [2021-08-17T14.59.18.312] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
927
- [2021-08-17T14.59.33.984] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
928
- [2021-08-17T14.59.54.758] [DEBUG] BaseChyz [248] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
929
- [2021-08-17T14.59.54.759] [INFO] BaseChyz [55] [C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\SiteController.ts] - Site Controller Burası site
930
- [2021-08-17T15.00.06.808] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
931
- [2021-08-17T15.00.06.811] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
932
- [2021-08-17T15.00.06.812] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
933
- [2021-08-17T15.00.06.877] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
934
- [2021-08-17T15.00.06.877] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
935
- [2021-08-17T15.00.06.940] [DEBUG] BaseChyz [222] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
936
- [2021-08-17T15.00.06.941] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
937
- [2021-08-17T15.00.06.941] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
938
- [2021-08-17T15.00.06.942] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
939
- [2021-08-17T15.00.06.942] [DEBUG] BaseChyz [229] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
940
- [2021-08-17T15.00.07.048] [DEBUG] BaseChyz [162] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
941
- [2021-08-17T15.00.07.054] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
942
- [2021-08-17T15.00.07.057] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
943
- [2021-08-17T15.00.07.058] [INFO] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
944
- [2021-08-17T15.00.10.126] [DEBUG] BaseChyz [234] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
945
- [2021-08-17T15.00.25.834] [ERROR] BaseChyz [238] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
946
- at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
947
- at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
948
- at AccessControl.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:49:22)
949
- at Generator.next (<anonymous>)
950
- at C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:8:71
951
- at new Promise (<anonymous>)
952
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:4:12)
953
- at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:42:16)
954
- at AccessControl.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\ActionFilter.ts:32:20)
955
- at Generator.next (<anonymous>) {
956
- statusCode: 500
592
+ [2021-11-30T13.26.07.012] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
593
+ [2021-11-30T13.26.07.013] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
594
+ [2021-11-30T13.26.07.015] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - EagerLoadingError [SequelizeEagerLoadingError]: ProductModelsClass is associated to ProductsClass using an alias. You must use the 'as' keyword to specify the alias within your include statement.
595
+ at Function._getIncludedAssociation (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:722:13)
596
+ at Function._validateIncludedElement (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:614:53)
597
+ at C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:509:37
598
+ at Array.map (<anonymous>)
599
+ at Function._validateIncludedElements (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:504:39)
600
+ at Function.findAll (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1723:12)
601
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
602
+ [2021-11-30T13.26.19.097] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
603
+ [2021-11-30T13.26.19.101] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
604
+ [2021-11-30T13.26.19.111] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
605
+ [2021-11-30T13.26.19.120] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
606
+ [2021-11-30T13.26.19.122] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
607
+ [2021-11-30T13.26.19.124] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
608
+ [2021-11-30T13.26.19.124] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
609
+ [2021-11-30T13.26.19.125] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
610
+ [2021-11-30T13.26.19.125] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
611
+ [2021-11-30T13.26.19.208] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
612
+ [2021-11-30T13.26.19.208] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
613
+ [2021-11-30T13.26.19.209] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
614
+ [2021-11-30T13.26.19.247] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
615
+ [2021-11-30T13.26.19.248] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
616
+ [2021-11-30T13.26.19.373] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
617
+ [2021-11-30T13.26.19.373] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
618
+ [2021-11-30T13.26.19.373] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
619
+ [2021-11-30T13.26.19.374] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
620
+ [2021-11-30T13.26.19.374] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
621
+ [2021-11-30T13.26.19.375] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
622
+ [2021-11-30T13.26.19.378] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
623
+ [2021-11-30T13.26.19.378] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
624
+ [2021-11-30T13.26.19.379] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
625
+ [2021-11-30T13.26.19.383] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
626
+ [2021-11-30T13.26.20.040] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
627
+ [2021-11-30T13.26.20.104] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
628
+ [2021-11-30T13.26.21.114] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
629
+ [2021-11-30T13.26.21.115] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
630
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
631
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
632
+ index: 0,
633
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
634
+ groups: undefined
635
+ ]
636
+ [2021-11-30T13.26.21.122] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
637
+ [2021-11-30T13.26.21.188] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
638
+ user: 1,
639
+ ip: '::1',
640
+ agent: 'PostmanRuntime/7.28.4',
641
+ iat: 1638267150,
642
+ exp: 1638270750
957
643
  }
958
- [2021-08-23T14.37.16.063] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
959
- [2021-08-23T14.37.16.066] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
960
- [2021-08-23T14.37.16.066] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
961
- [2021-08-23T14.37.16.141] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
962
- [2021-08-23T14.37.16.142] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
963
- [2021-08-23T14.37.16.199] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
964
- [2021-08-23T14.37.16.199] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
965
- [2021-08-23T14.37.16.200] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
966
- [2021-08-23T14.37.16.200] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
967
- [2021-08-23T14.37.16.201] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
968
- [2021-08-23T14.37.16.220] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
969
- [2021-08-23T14.37.16.305] [ERROR] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Unable to connect to the database: TypeError: Cannot read property 'authenticate' of undefined
970
- at DbConnection.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:30:28)
971
- at Generator.next (<anonymous>)
972
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:8:71
973
- at new Promise (<anonymous>)
974
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:4:12)
975
- at DbConnection.connect (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:28:26)
976
- at DbConnection.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:24:20)
977
- at Generator.next (<anonymous>)
978
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:8:71
979
- at new Promise (<anonymous>)
980
- [2021-08-23T14.37.16.307] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
981
- [2021-08-23T14.37.16.309] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
982
- [2021-08-23T14.37.16.316] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
983
- [2021-08-23T14.37.16.319] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
984
- [2021-08-23T14.37.16.320] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
985
- [2021-08-23T14.37.43.377] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
986
- [2021-08-23T14.37.43.380] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
987
- [2021-08-23T14.37.43.380] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
988
- [2021-08-23T14.37.43.459] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
989
- [2021-08-23T14.37.43.460] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
990
- [2021-08-23T14.37.43.524] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
991
- [2021-08-23T14.37.43.525] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
992
- [2021-08-23T14.37.43.525] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
993
- [2021-08-23T14.37.43.525] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
994
- [2021-08-23T14.37.43.526] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
995
- [2021-08-23T14.37.43.544] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
996
- [2021-08-23T14.37.43.626] [ERROR] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Unable to connect to the database: TypeError: Cannot read property 'authenticate' of undefined
997
- at DbConnection.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:30:28)
998
- at Generator.next (<anonymous>)
999
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:8:71
1000
- at new Promise (<anonymous>)
1001
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:4:12)
1002
- at DbConnection.connect (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:28:26)
1003
- at DbConnection.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:24:20)
1004
- at Generator.next (<anonymous>)
1005
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:8:71
1006
- at new Promise (<anonymous>)
1007
- [2021-08-23T14.37.43.628] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1008
- [2021-08-23T14.37.43.629] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1009
- [2021-08-23T14.37.43.636] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1010
- [2021-08-23T14.37.43.639] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1011
- [2021-08-23T14.37.43.640] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1012
- [2021-08-23T14.39.16.617] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1013
- [2021-08-23T14.39.16.619] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1014
- [2021-08-23T14.39.16.620] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
1015
- [2021-08-23T14.39.16.694] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1016
- [2021-08-23T14.39.16.695] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1017
- [2021-08-23T14.39.16.752] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1018
- [2021-08-23T14.39.16.753] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1019
- [2021-08-23T14.39.16.753] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1020
- [2021-08-23T14.39.16.754] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1021
- [2021-08-23T14.39.16.754] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1022
- [2021-08-23T14.39.16.771] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1023
- [2021-08-23T14.39.19.529] [ERROR] BaseChyz [154] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Unable to connect to the database: TypeError: Cannot read property 'authenticate' of undefined
1024
- at DbConnection.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:30:28)
1025
- at Generator.next (<anonymous>)
1026
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:8:71
1027
- at new Promise (<anonymous>)
1028
- at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:4:12)
1029
- at DbConnection.connect (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:28:26)
1030
- at DbConnection.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:24:20)
644
+ [2021-11-30T13.26.21.190] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
645
+ [2021-11-30T13.26.21.191] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
646
+ [2021-11-30T13.26.21.193] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - EagerLoadingError [SequelizeEagerLoadingError]: ProductModelsClass is associated to ProductsClass using an alias. You must use the 'as' keyword to specify the alias within your include statement.
647
+ at Function._getIncludedAssociation (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:722:13)
648
+ at Function._validateIncludedElement (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:614:53)
649
+ at C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:509:37
650
+ at Array.map (<anonymous>)
651
+ at Function._validateIncludedElements (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:504:39)
652
+ at Function.findAll (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1723:12)
653
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
654
+ [2021-11-30T13.26.33.246] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
655
+ [2021-11-30T13.26.33.252] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
656
+ [2021-11-30T13.26.33.261] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
657
+ [2021-11-30T13.26.33.274] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
658
+ [2021-11-30T13.26.33.276] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
659
+ [2021-11-30T13.26.33.277] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
660
+ [2021-11-30T13.26.33.278] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
661
+ [2021-11-30T13.26.33.278] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
662
+ [2021-11-30T13.26.33.278] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
663
+ [2021-11-30T13.26.33.361] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
664
+ [2021-11-30T13.26.33.361] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
665
+ [2021-11-30T13.26.33.362] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
666
+ [2021-11-30T13.26.33.400] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
667
+ [2021-11-30T13.26.33.400] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
668
+ [2021-11-30T13.26.33.526] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
669
+ [2021-11-30T13.26.33.527] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
670
+ [2021-11-30T13.26.33.528] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
671
+ [2021-11-30T13.26.33.528] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
672
+ [2021-11-30T13.26.33.528] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
673
+ [2021-11-30T13.26.33.529] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
674
+ [2021-11-30T13.26.33.532] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
675
+ [2021-11-30T13.26.33.532] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
676
+ [2021-11-30T13.26.33.532] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
677
+ [2021-11-30T13.26.33.538] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
678
+ [2021-11-30T13.26.34.212] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
679
+ [2021-11-30T13.26.34.278] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
680
+ [2021-11-30T13.26.34.324] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
681
+ [2021-11-30T13.26.34.326] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
682
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
683
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
684
+ index: 0,
685
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
686
+ groups: undefined
687
+ ]
688
+ [2021-11-30T13.26.34.332] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
689
+ [2021-11-30T13.26.34.399] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
690
+ user: 1,
691
+ ip: '::1',
692
+ agent: 'PostmanRuntime/7.28.4',
693
+ iat: 1638267150,
694
+ exp: 1638270750
695
+ }
696
+ [2021-11-30T13.26.34.401] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
697
+ [2021-11-30T13.26.34.402] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
698
+ [2021-11-30T13.26.34.403] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - EagerLoadingError [SequelizeEagerLoadingError]: ProductModelsClass is associated to ProductsClass using an alias. You must use the 'as' keyword to specify the alias within your include statement.
699
+ at Function._getIncludedAssociation (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:722:13)
700
+ at Function._validateIncludedElement (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:614:53)
701
+ at C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:509:37
702
+ at Array.map (<anonymous>)
703
+ at Function._validateIncludedElements (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:504:39)
704
+ at Function.findAll (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1723:12)
705
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
706
+ [2021-11-30T13.26.35.527] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
707
+ [2021-11-30T13.26.35.528] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
708
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
709
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
710
+ index: 0,
711
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
712
+ groups: undefined
713
+ ]
714
+ [2021-11-30T13.26.35.529] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
715
+ [2021-11-30T13.26.35.596] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
716
+ user: 1,
717
+ ip: '::1',
718
+ agent: 'PostmanRuntime/7.28.4',
719
+ iat: 1638267150,
720
+ exp: 1638270750
721
+ }
722
+ [2021-11-30T13.26.35.597] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
723
+ [2021-11-30T13.26.35.598] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
724
+ [2021-11-30T13.26.35.598] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - EagerLoadingError [SequelizeEagerLoadingError]: ProductModelsClass is associated to ProductsClass using an alias. You must use the 'as' keyword to specify the alias within your include statement.
725
+ at Function._getIncludedAssociation (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:722:13)
726
+ at Function._validateIncludedElement (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:614:53)
727
+ at C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:509:37
728
+ at Array.map (<anonymous>)
729
+ at Function._validateIncludedElements (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:504:39)
730
+ at Function.findAll (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1723:12)
731
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
732
+ [2021-11-30T13.26.46.732] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
733
+ [2021-11-30T13.26.46.737] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
734
+ [2021-11-30T13.26.46.747] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
735
+ [2021-11-30T13.26.46.756] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
736
+ [2021-11-30T13.26.46.758] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
737
+ [2021-11-30T13.26.46.760] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
738
+ [2021-11-30T13.26.46.760] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
739
+ [2021-11-30T13.26.46.761] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
740
+ [2021-11-30T13.26.46.761] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
741
+ [2021-11-30T13.26.46.852] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
742
+ [2021-11-30T13.26.46.852] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
743
+ [2021-11-30T13.26.46.853] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
744
+ [2021-11-30T13.26.46.896] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
745
+ [2021-11-30T13.26.46.896] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
746
+ [2021-11-30T13.26.47.022] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
747
+ [2021-11-30T13.26.47.022] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
748
+ [2021-11-30T13.26.47.023] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
749
+ [2021-11-30T13.26.47.023] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
750
+ [2021-11-30T13.26.47.024] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
751
+ [2021-11-30T13.26.47.024] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
752
+ [2021-11-30T13.26.47.027] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
753
+ [2021-11-30T13.26.47.030] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
754
+ [2021-11-30T13.26.47.030] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
755
+ [2021-11-30T13.26.47.037] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
756
+ [2021-11-30T13.26.47.690] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
757
+ [2021-11-30T13.26.47.751] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
758
+ [2021-11-30T13.26.48.779] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
759
+ [2021-11-30T13.26.48.780] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
760
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
761
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
762
+ index: 0,
763
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
764
+ groups: undefined
765
+ ]
766
+ [2021-11-30T13.26.48.786] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
767
+ [2021-11-30T13.26.48.854] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
768
+ user: 1,
769
+ ip: '::1',
770
+ agent: 'PostmanRuntime/7.28.4',
771
+ iat: 1638267150,
772
+ exp: 1638270750
773
+ }
774
+ [2021-11-30T13.26.48.856] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
775
+ [2021-11-30T13.26.48.856] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
776
+ [2021-11-30T13.26.48.860] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "ProductsClass"."id", "ProductsClass"."title", "ProductsClass"."model_id", "ProductsClass"."properties", "ProductModelsClass"."id" AS "ProductModelsClass.id", "ProductModelsClass"."title" AS "ProductModelsClass.title", "ProductModelsClass"."stock_code" AS "ProductModelsClass.stock_code", "ProductModelsClass"."properties" AS "ProductModelsClass.properties" FROM "products" AS "ProductsClass" LEFT OUTER JOIN "models" AS "ProductModelsClass" ON "ProductsClass"."model_id" = "ProductModelsClass"."id";
777
+ [2021-11-30T13.27.27.767] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
778
+ [2021-11-30T13.27.27.772] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
779
+ [2021-11-30T13.27.27.781] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
780
+ [2021-11-30T13.27.27.791] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
781
+ [2021-11-30T13.27.27.793] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
782
+ [2021-11-30T13.27.27.794] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
783
+ [2021-11-30T13.27.27.795] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
784
+ [2021-11-30T13.27.27.795] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
785
+ [2021-11-30T13.27.27.796] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
786
+ [2021-11-30T13.27.27.878] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
787
+ [2021-11-30T13.27.27.879] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
788
+ [2021-11-30T13.27.27.879] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
789
+ [2021-11-30T13.27.27.919] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
790
+ [2021-11-30T13.27.27.920] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
791
+ [2021-11-30T13.27.28.044] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
792
+ [2021-11-30T13.27.28.044] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
793
+ [2021-11-30T13.27.28.045] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
794
+ [2021-11-30T13.27.28.045] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
795
+ [2021-11-30T13.27.28.046] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
796
+ [2021-11-30T13.27.28.046] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
797
+ [2021-11-30T13.27.28.049] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
798
+ [2021-11-30T13.27.28.049] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
799
+ [2021-11-30T13.27.28.050] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
800
+ [2021-11-30T13.27.28.054] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
801
+ [2021-11-30T13.27.28.747] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
802
+ [2021-11-30T13.27.28.814] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
803
+ [2021-11-30T13.27.29.821] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
804
+ [2021-11-30T13.27.29.823] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
805
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
806
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
807
+ index: 0,
808
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
809
+ groups: undefined
810
+ ]
811
+ [2021-11-30T13.27.29.829] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
812
+ [2021-11-30T13.27.29.897] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
813
+ user: 1,
814
+ ip: '::1',
815
+ agent: 'PostmanRuntime/7.28.4',
816
+ iat: 1638267150,
817
+ exp: 1638270750
818
+ }
819
+ [2021-11-30T13.27.29.899] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
820
+ [2021-11-30T13.27.29.900] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
821
+ [2021-11-30T13.27.29.903] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "ProductsClass"."id", "ProductsClass"."title", "ProductsClass"."model_id", "ProductsClass"."properties", "ProductModelsClass"."id" AS "ProductModelsClass.id", "ProductModelsClass"."title" AS "ProductModelsClass.title", "ProductModelsClass"."stock_code" AS "ProductModelsClass.stock_code", "ProductModelsClass"."properties" AS "ProductModelsClass.properties" FROM "products" AS "ProductsClass" LEFT OUTER JOIN "models" AS "ProductModelsClass" ON "ProductsClass"."model_id" = "ProductModelsClass"."id";
822
+ [2021-11-30T13.27.29.973] [ERROR] BaseChyz [183] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - TypeError: product.getProductModelsClass is not a function
823
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:123:29)
1031
824
  at Generator.next (<anonymous>)
1032
- at C:\PROJELER\github\Chy-Nodejs-Framework\base\DbConnection.ts:8:71
1033
- at new Promise (<anonymous>)
1034
- [2021-08-23T14.39.19.531] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1035
- [2021-08-23T14.39.19.532] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1036
- [2021-08-23T14.39.19.539] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1037
- [2021-08-23T14.39.19.542] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1038
- [2021-08-23T14.39.19.543] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1039
- [2021-08-23T14.40.51.204] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1040
- [2021-08-23T14.40.51.207] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1041
- [2021-08-23T14.40.51.207] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/login
1042
- [2021-08-23T14.40.51.271] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1043
- [2021-08-23T14.40.51.271] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1044
- [2021-08-23T14.40.51.330] [DEBUG] BaseChyz [216] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1045
- [2021-08-23T14.40.51.331] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1046
- [2021-08-23T14.40.51.331] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1047
- [2021-08-23T14.40.51.332] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1048
- [2021-08-23T14.40.51.332] [DEBUG] BaseChyz [223] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1049
- [2021-08-23T14.40.51.350] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1050
- [2021-08-23T14.41.07.908] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1051
- [2021-08-23T14.41.07.910] [DEBUG] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1052
- [2021-08-23T14.41.07.917] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1053
- [2021-08-23T14.41.07.920] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1054
- [2021-08-23T14.41.07.921] [INFO] BaseChyz [150] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
825
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
826
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
827
+ [2021-11-30T13.27.43.954] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
828
+ [2021-11-30T13.27.43.958] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
829
+ [2021-11-30T13.27.43.968] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
830
+ [2021-11-30T13.27.43.978] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
831
+ [2021-11-30T13.27.43.980] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
832
+ [2021-11-30T13.27.43.981] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
833
+ [2021-11-30T13.27.43.982] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
834
+ [2021-11-30T13.27.43.982] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
835
+ [2021-11-30T13.27.43.983] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
836
+ [2021-11-30T13.27.44.078] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
837
+ [2021-11-30T13.27.44.079] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
838
+ [2021-11-30T13.27.44.080] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
839
+ [2021-11-30T13.27.44.124] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
840
+ [2021-11-30T13.27.44.124] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
841
+ [2021-11-30T13.27.44.256] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
842
+ [2021-11-30T13.27.44.256] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
843
+ [2021-11-30T13.27.44.257] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
844
+ [2021-11-30T13.27.44.257] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
845
+ [2021-11-30T13.27.44.258] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
846
+ [2021-11-30T13.27.44.258] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
847
+ [2021-11-30T13.27.44.261] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
848
+ [2021-11-30T13.27.44.262] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
849
+ [2021-11-30T13.27.44.262] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
850
+ [2021-11-30T13.27.44.267] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
851
+ [2021-11-30T13.27.44.590] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
852
+ [2021-11-30T13.27.44.592] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - JSON Web Token. [
853
+ 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
854
+ 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
855
+ index: 0,
856
+ input: 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoxLCJpcCI6Ijo6MSIsImFnZW50IjoiUG9zdG1hblJ1bnRpbWUvNy4yOC40IiwiaWF0IjoxNjM4MjY3MTUwLCJleHAiOjE2MzgyNzA3NTB9.JcQqEIQTDAZtKgMnt1QkdJ7LksyoA98oNdo1Qaf7rY8',
857
+ groups: undefined
858
+ ]
859
+ [2021-11-30T13.27.44.857] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "id", "name", "username", "password", "email", "permissions_id", "authkey", "status" FROM "users" AS "User" WHERE "User"."id" = 1;
860
+ [2021-11-30T13.27.44.922] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
861
+ [2021-11-30T13.27.44.923] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
862
+ user: 1,
863
+ ip: '::1',
864
+ agent: 'PostmanRuntime/7.28.4',
865
+ iat: 1638267150,
866
+ exp: 1638270750
867
+ }
868
+ [2021-11-30T13.27.44.925] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
869
+ [2021-11-30T13.27.44.925] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
870
+ [2021-11-30T13.27.44.943] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT "ProductsClass"."id", "ProductsClass"."title", "ProductsClass"."model_id", "ProductsClass"."properties", "ProductModelsClass"."id" AS "ProductModelsClass.id", "ProductModelsClass"."title" AS "ProductModelsClass.title", "ProductModelsClass"."stock_code" AS "ProductModelsClass.stock_code", "ProductModelsClass"."properties" AS "ProductModelsClass.properties" FROM "products" AS "ProductsClass" LEFT OUTER JOIN "models" AS "ProductModelsClass" ON "ProductsClass"."model_id" = "ProductModelsClass"."id";
871
+ [2021-11-30T13.27.44.985] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
872
+ [2021-11-30T14.15.20.406] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
873
+ [2021-11-30T14.15.20.410] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
874
+ [2021-11-30T14.15.20.419] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
875
+ [2021-11-30T14.15.20.428] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
876
+ [2021-11-30T14.15.20.430] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
877
+ [2021-11-30T14.15.20.431] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
878
+ [2021-11-30T14.15.20.432] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
879
+ [2021-11-30T14.15.20.432] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
880
+ [2021-11-30T14.15.20.433] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
881
+ [2021-11-30T14.15.20.513] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
882
+ [2021-11-30T14.15.20.514] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
883
+ [2021-11-30T14.15.20.514] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
884
+ [2021-11-30T14.15.20.553] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
885
+ [2021-11-30T14.15.20.554] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
886
+ [2021-11-30T14.15.20.677] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
887
+ [2021-11-30T14.15.20.678] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
888
+ [2021-11-30T14.15.20.678] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
889
+ [2021-11-30T14.15.20.679] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
890
+ [2021-11-30T14.15.20.679] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
891
+ [2021-11-30T14.15.20.680] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
892
+ [2021-11-30T14.15.20.682] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
893
+ [2021-11-30T14.15.20.683] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
894
+ [2021-11-30T14.15.20.683] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
895
+ [2021-11-30T14.15.20.687] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
896
+ [2021-11-30T14.15.21.350] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
897
+ [2021-11-30T14.15.21.412] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
898
+ [2021-11-30T14.38.47.648] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderItemClass
899
+ [2021-11-30T14.38.47.653] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... OrderClass
900
+ [2021-11-30T14.38.47.662] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... CustomerClass
901
+ [2021-11-30T14.38.47.671] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductModelsClass
902
+ [2021-11-30T14.38.47.673] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... ProductsClass
903
+ [2021-11-30T14.38.47.674] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
904
+ [2021-11-30T14.38.47.674] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
905
+ [2021-11-30T14.38.47.675] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
906
+ [2021-11-30T14.38.47.675] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/order/list
907
+ [2021-11-30T14.38.47.757] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/oauth2.0)
908
+ [2021-11-30T14.38.47.757] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/
909
+ [2021-11-30T14.38.47.758] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /oauth2.0/orderCreate
910
+ [2021-11-30T14.38.47.799] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
911
+ [2021-11-30T14.38.47.800] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
912
+ [2021-11-30T14.38.47.928] [DEBUG] BaseChyz [252] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
913
+ [2021-11-30T14.38.47.929] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
914
+ [2021-11-30T14.38.47.929] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
915
+ [2021-11-30T14.38.47.929] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
916
+ [2021-11-30T14.38.47.930] [DEBUG] BaseChyz [259] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
917
+ [2021-11-30T14.38.47.930] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
918
+ [2021-11-30T14.38.47.933] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
919
+ [2021-11-30T14.38.47.933] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
920
+ [2021-11-30T14.38.47.934] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://localhost:3000
921
+ [2021-11-30T14.38.47.938] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - http://192.168.56.1:3000
922
+ [2021-11-30T14.38.48.624] [DEBUG] BaseChyz [171] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Executing (default): SELECT 1+1 AS result
923
+ [2021-11-30T14.38.48.690] [INFO] BaseChyz [175] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.