chyz 1.0.12-rc.14

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 (163) hide show
  1. package/BaseChyz.ts +316 -0
  2. package/Chyz.ts +11 -0
  3. package/Examples/Controllers/ApiController.ts +121 -0
  4. package/Examples/Controllers/PublicController.ts +44 -0
  5. package/Examples/Controllers/SiteController.ts +127 -0
  6. package/Examples/Models/Customer.ts +113 -0
  7. package/Examples/Models/Order.ts +48 -0
  8. package/Examples/Models/OrderItem.ts +26 -0
  9. package/Examples/Models/User.ts +80 -0
  10. package/Examples/index.ts +38 -0
  11. package/Examples/log/access.log +0 -0
  12. package/Examples/log/app.log +3264 -0
  13. package/Examples/log/errors.log +534 -0
  14. package/Examples/package.json +45 -0
  15. package/Examples/tsconfig.json +20 -0
  16. package/Examples/yarn.lock +2202 -0
  17. package/README.md +218 -0
  18. package/base/ActionFilter.ts +71 -0
  19. package/base/BaseError.ts +26 -0
  20. package/base/BaseObject.ts +19 -0
  21. package/base/Behavior.ts +6 -0
  22. package/base/Component.ts +66 -0
  23. package/base/Configurable.ts +10 -0
  24. package/base/Controller.ts +84 -0
  25. package/base/DataErrorDbException.ts +16 -0
  26. package/base/DbConnection.ts +51 -0
  27. package/base/ForbiddenHttpException.ts +15 -0
  28. package/base/InvalidConfigException.ts +16 -0
  29. package/base/Model.ts +254 -0
  30. package/base/NotFoundHttpException.ts +14 -0
  31. package/base/RestClient.ts +27 -0
  32. package/base/UnauthorizedHttpException.ts +16 -0
  33. package/base/ValidationHttpException.ts +14 -0
  34. package/base/db/Exception.ts +14 -0
  35. package/base/index.ts +16 -0
  36. package/decorator/Middleware.ts +9 -0
  37. package/decorator/controller.ts +22 -0
  38. package/decorator/enums/ControllerDecoratorParams.ts +5 -0
  39. package/decorator/get.ts +37 -0
  40. package/decorator/index.ts +3 -0
  41. package/decorator/post.ts +36 -0
  42. package/dist/BaseChyz.js +257 -0
  43. package/dist/BaseChyz.js.map +1 -0
  44. package/dist/Chyz.js +15 -0
  45. package/dist/Chyz.js.map +1 -0
  46. package/dist/base/ActionFilter.js +75 -0
  47. package/dist/base/ActionFilter.js.map +1 -0
  48. package/dist/base/BaseError.js +26 -0
  49. package/dist/base/BaseError.js.map +1 -0
  50. package/dist/base/BaseObject.js +20 -0
  51. package/dist/base/BaseObject.js.map +1 -0
  52. package/dist/base/Behavior.js +8 -0
  53. package/dist/base/Behavior.js.map +1 -0
  54. package/dist/base/Component.js +61 -0
  55. package/dist/base/Component.js.map +1 -0
  56. package/dist/base/Configurable.js +9 -0
  57. package/dist/base/Configurable.js.map +1 -0
  58. package/dist/base/Controller.js +75 -0
  59. package/dist/base/Controller.js.map +1 -0
  60. package/dist/base/DataErrorDbException.js +18 -0
  61. package/dist/base/DataErrorDbException.js.map +1 -0
  62. package/dist/base/DbConnection.js +53 -0
  63. package/dist/base/DbConnection.js.map +1 -0
  64. package/dist/base/ForbiddenHttpException.js +17 -0
  65. package/dist/base/ForbiddenHttpException.js.map +1 -0
  66. package/dist/base/InvalidConfigException.js +18 -0
  67. package/dist/base/InvalidConfigException.js.map +1 -0
  68. package/dist/base/Model.js +243 -0
  69. package/dist/base/Model.js.map +1 -0
  70. package/dist/base/NotFoundHttpException.js +18 -0
  71. package/dist/base/NotFoundHttpException.js.map +1 -0
  72. package/dist/base/RestClient.js +26 -0
  73. package/dist/base/RestClient.js.map +1 -0
  74. package/dist/base/UnauthorizedHttpException.js +18 -0
  75. package/dist/base/UnauthorizedHttpException.js.map +1 -0
  76. package/dist/base/ValidationHttpException.js +18 -0
  77. package/dist/base/ValidationHttpException.js.map +1 -0
  78. package/dist/base/db/Exception.js +16 -0
  79. package/dist/base/db/Exception.js.map +1 -0
  80. package/dist/base/index.js +29 -0
  81. package/dist/base/index.js.map +1 -0
  82. package/dist/decorator/Middleware.js +12 -0
  83. package/dist/decorator/Middleware.js.map +1 -0
  84. package/dist/decorator/controller.js +25 -0
  85. package/dist/decorator/controller.js.map +1 -0
  86. package/dist/decorator/enums/ControllerDecoratorParams.js +10 -0
  87. package/dist/decorator/enums/ControllerDecoratorParams.js.map +1 -0
  88. package/dist/decorator/get.js +37 -0
  89. package/dist/decorator/get.js.map +1 -0
  90. package/dist/decorator/index.js +16 -0
  91. package/dist/decorator/index.js.map +1 -0
  92. package/dist/decorator/post.js +37 -0
  93. package/dist/decorator/post.js.map +1 -0
  94. package/dist/filters/AccessControl.js +76 -0
  95. package/dist/filters/AccessControl.js.map +1 -0
  96. package/dist/filters/AccessRule.js +79 -0
  97. package/dist/filters/AccessRule.js.map +1 -0
  98. package/dist/filters/auth/AuthInterface.js +3 -0
  99. package/dist/filters/auth/AuthInterface.js.map +1 -0
  100. package/dist/filters/auth/AuthMethod.js +71 -0
  101. package/dist/filters/auth/AuthMethod.js.map +1 -0
  102. package/dist/filters/auth/HttpBasicAuth.js +8 -0
  103. package/dist/filters/auth/HttpBasicAuth.js.map +1 -0
  104. package/dist/filters/auth/HttpBearerAuth.js +33 -0
  105. package/dist/filters/auth/HttpBearerAuth.js.map +1 -0
  106. package/dist/filters/auth/HttpHeaderAuth.js +61 -0
  107. package/dist/filters/auth/HttpHeaderAuth.js.map +1 -0
  108. package/dist/filters/auth/JwtHttpBearerAuth.js +82 -0
  109. package/dist/filters/auth/JwtHttpBearerAuth.js.map +1 -0
  110. package/dist/filters/auth/index.js +16 -0
  111. package/dist/filters/auth/index.js.map +1 -0
  112. package/dist/filters/index.js +15 -0
  113. package/dist/filters/index.js.map +1 -0
  114. package/dist/index.js +28 -0
  115. package/dist/index.js.map +1 -0
  116. package/dist/log/config/log4js.json +55 -0
  117. package/dist/model/RouteDefinition.js +9 -0
  118. package/dist/model/RouteDefinition.js.map +1 -0
  119. package/dist/requiments/Glob.js +11 -0
  120. package/dist/requiments/Glob.js.map +1 -0
  121. package/dist/requiments/ReflectUtil.js +25 -0
  122. package/dist/requiments/ReflectUtil.js.map +1 -0
  123. package/dist/requiments/Utils.js +40 -0
  124. package/dist/requiments/Utils.js.map +1 -0
  125. package/dist/validators/BooleanValidator.js +2 -0
  126. package/dist/validators/BooleanValidator.js.map +1 -0
  127. package/dist/validators/CompareValidator.js +2 -0
  128. package/dist/validators/CompareValidator.js.map +1 -0
  129. package/dist/validators/DateValidator.js +2 -0
  130. package/dist/validators/DateValidator.js.map +1 -0
  131. package/dist/validators/EmailValidator.js +2 -0
  132. package/dist/validators/EmailValidator.js.map +1 -0
  133. package/dist/validators/Validator.js +28 -0
  134. package/dist/validators/Validator.js.map +1 -0
  135. package/dist/web/IdentityInterface.js +9 -0
  136. package/dist/web/IdentityInterface.js.map +1 -0
  137. package/dist/web/User.js +83 -0
  138. package/dist/web/User.js.map +1 -0
  139. package/filters/AccessControl.ts +64 -0
  140. package/filters/AccessRule.ts +137 -0
  141. package/filters/auth/AuthInterface.ts +34 -0
  142. package/filters/auth/AuthMethod.ts +88 -0
  143. package/filters/auth/HttpBasicAuth.ts +7 -0
  144. package/filters/auth/HttpBearerAuth.ts +31 -0
  145. package/filters/auth/HttpHeaderAuth.ts +53 -0
  146. package/filters/auth/JwtHttpBearerAuth.ts +81 -0
  147. package/filters/auth/index.ts +3 -0
  148. package/filters/index.ts +2 -0
  149. package/index.ts +14 -0
  150. package/log/config/log4js.json +55 -0
  151. package/model/RouteDefinition.ts +18 -0
  152. package/package.json +52 -0
  153. package/requiments/Glob.ts +9 -0
  154. package/requiments/ReflectUtil.ts +26 -0
  155. package/requiments/Utils.ts +57 -0
  156. package/tsconfig.json +18 -0
  157. package/validators/BooleanValidator.ts +0 -0
  158. package/validators/CompareValidator.ts +0 -0
  159. package/validators/DateValidator.ts +0 -0
  160. package/validators/EmailValidator.ts +0 -0
  161. package/validators/Validator.ts +27 -0
  162. package/web/IdentityInterface.ts +62 -0
  163. package/web/User.ts +96 -0
@@ -0,0 +1,3264 @@
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
43
+ }
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)
50
+ 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
58
+ }
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
99
+ }
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
140
+ }
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
155
+ }
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
196
+ }
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
330
+ }
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
357
+ }
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
384
+ }
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
398
+ }
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
452
+ }
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
476
+ }
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
500
+ }
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
511
+ }
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
522
+ }
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
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
557
+ }
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
957
+ }
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)
1031
+ 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
1055
+ [2021-08-24T10.11.53.790] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1056
+ [2021-08-24T10.11.53.874] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1057
+ [2021-08-24T10.11.53.876] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1058
+ [2021-08-24T10.11.53.883] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1059
+ [2021-08-24T10.11.53.885] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1060
+ [2021-08-24T10.11.53.886] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1061
+ [2021-08-24T10.11.53.893] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Unable to connect to the database: ConnectionRefusedError [SequelizeConnectionRefusedError]: connect ECONNREFUSED 127.0.0.1:5432
1062
+ at Client._connectionCallback (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\postgres\connection-manager.js:172:24)
1063
+ at Client._handleErrorWhileConnecting (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\client.js:305:19)
1064
+ at Client._handleErrorEvent (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\client.js:315:19)
1065
+ at Connection.emit (events.js:315:20)
1066
+ at Connection.EventEmitter.emit (domain.js:467:12)
1067
+ at Socket.reportStreamError (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\connection.js:52:12)
1068
+ at Socket.emit (events.js:315:20)
1069
+ at Socket.EventEmitter.emit (domain.js:467:12)
1070
+ at emitErrorNT (internal/streams/destroy.js:106:8)
1071
+ at emitErrorCloseNT (internal/streams/destroy.js:74:3) {
1072
+ parent: Error: connect ECONNREFUSED 127.0.0.1:5432
1073
+ at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16) {
1074
+ errno: -4078,
1075
+ code: 'ECONNREFUSED',
1076
+ syscall: 'connect',
1077
+ address: '127.0.0.1',
1078
+ port: 5432
1079
+ },
1080
+ original: Error: connect ECONNREFUSED 127.0.0.1:5432
1081
+ at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16) {
1082
+ errno: -4078,
1083
+ code: 'ECONNREFUSED',
1084
+ syscall: 'connect',
1085
+ address: '127.0.0.1',
1086
+ port: 5432
1087
+ }
1088
+ }
1089
+ [2021-08-24T10.12.53.955] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1090
+ [2021-08-24T10.12.54.037] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1091
+ [2021-08-24T10.12.54.039] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1092
+ [2021-08-24T10.12.54.046] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1093
+ [2021-08-24T10.12.54.048] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1094
+ [2021-08-24T10.12.54.049] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1095
+ [2021-08-24T10.12.54.059] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Unable to connect to the database: ConnectionRefusedError [SequelizeConnectionRefusedError]: connect ECONNREFUSED 127.0.0.1:5432
1096
+ at Client._connectionCallback (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\postgres\connection-manager.js:172:24)
1097
+ at Client._handleErrorWhileConnecting (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\client.js:305:19)
1098
+ at Client._handleErrorEvent (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\client.js:315:19)
1099
+ at Connection.emit (events.js:315:20)
1100
+ at Connection.EventEmitter.emit (domain.js:467:12)
1101
+ at Socket.reportStreamError (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\connection.js:52:12)
1102
+ at Socket.emit (events.js:315:20)
1103
+ at Socket.EventEmitter.emit (domain.js:467:12)
1104
+ at emitErrorNT (internal/streams/destroy.js:106:8)
1105
+ at emitErrorCloseNT (internal/streams/destroy.js:74:3) {
1106
+ parent: Error: connect ECONNREFUSED 127.0.0.1:5432
1107
+ at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16) {
1108
+ errno: -4078,
1109
+ code: 'ECONNREFUSED',
1110
+ syscall: 'connect',
1111
+ address: '127.0.0.1',
1112
+ port: 5432
1113
+ },
1114
+ original: Error: connect ECONNREFUSED 127.0.0.1:5432
1115
+ at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16) {
1116
+ errno: -4078,
1117
+ code: 'ECONNREFUSED',
1118
+ syscall: 'connect',
1119
+ address: '127.0.0.1',
1120
+ port: 5432
1121
+ }
1122
+ }
1123
+ [2021-08-24T10.13.23.577] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1124
+ [2021-08-24T10.13.23.661] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1125
+ [2021-08-24T10.13.23.664] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1126
+ [2021-08-24T10.13.23.671] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1127
+ [2021-08-24T10.13.23.673] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1128
+ [2021-08-24T10.13.23.674] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1129
+ [2021-08-24T10.13.23.681] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Unable to connect to the database: ConnectionRefusedError [SequelizeConnectionRefusedError]: connect ECONNREFUSED 127.0.0.1:5432
1130
+ at Client._connectionCallback (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\postgres\connection-manager.js:172:24)
1131
+ at Client._handleErrorWhileConnecting (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\client.js:305:19)
1132
+ at Client._handleErrorEvent (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\client.js:315:19)
1133
+ at Connection.emit (events.js:315:20)
1134
+ at Connection.EventEmitter.emit (domain.js:467:12)
1135
+ at Socket.reportStreamError (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\connection.js:52:12)
1136
+ at Socket.emit (events.js:315:20)
1137
+ at Socket.EventEmitter.emit (domain.js:467:12)
1138
+ at emitErrorNT (internal/streams/destroy.js:106:8)
1139
+ at emitErrorCloseNT (internal/streams/destroy.js:74:3) {
1140
+ parent: Error: connect ECONNREFUSED 127.0.0.1:5432
1141
+ at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16) {
1142
+ errno: -4078,
1143
+ code: 'ECONNREFUSED',
1144
+ syscall: 'connect',
1145
+ address: '127.0.0.1',
1146
+ port: 5432
1147
+ },
1148
+ original: Error: connect ECONNREFUSED 127.0.0.1:5432
1149
+ at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16) {
1150
+ errno: -4078,
1151
+ code: 'ECONNREFUSED',
1152
+ syscall: 'connect',
1153
+ address: '127.0.0.1',
1154
+ port: 5432
1155
+ }
1156
+ }
1157
+ [2021-08-24T10.15.10.175] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1158
+ [2021-08-24T10.15.10.280] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1159
+ [2021-08-24T10.15.10.281] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1160
+ [2021-08-24T10.15.10.288] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1161
+ [2021-08-24T10.15.10.291] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1162
+ [2021-08-24T10.15.10.292] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1163
+ [2021-08-24T10.15.10.302] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Unable to connect to the database: ConnectionRefusedError [SequelizeConnectionRefusedError]: connect ECONNREFUSED 127.0.0.1:5432
1164
+ at Client._connectionCallback (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\postgres\connection-manager.js:172:24)
1165
+ at Client._handleErrorWhileConnecting (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\client.js:305:19)
1166
+ at Client._handleErrorEvent (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\client.js:315:19)
1167
+ at Connection.emit (events.js:315:20)
1168
+ at Connection.EventEmitter.emit (domain.js:467:12)
1169
+ at Socket.reportStreamError (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\pg\lib\connection.js:52:12)
1170
+ at Socket.emit (events.js:315:20)
1171
+ at Socket.EventEmitter.emit (domain.js:467:12)
1172
+ at emitErrorNT (internal/streams/destroy.js:106:8)
1173
+ at emitErrorCloseNT (internal/streams/destroy.js:74:3) {
1174
+ parent: Error: connect ECONNREFUSED 127.0.0.1:5432
1175
+ at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16) {
1176
+ errno: -4078,
1177
+ code: 'ECONNREFUSED',
1178
+ syscall: 'connect',
1179
+ address: '127.0.0.1',
1180
+ port: 5432
1181
+ },
1182
+ original: Error: connect ECONNREFUSED 127.0.0.1:5432
1183
+ at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1146:16) {
1184
+ errno: -4078,
1185
+ code: 'ECONNREFUSED',
1186
+ syscall: 'connect',
1187
+ address: '127.0.0.1',
1188
+ port: 5432
1189
+ }
1190
+ }
1191
+ [2021-08-24T10.15.30.623] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1192
+ [2021-08-24T10.15.30.710] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1193
+ [2021-08-24T10.15.30.711] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1194
+ [2021-08-24T10.15.30.717] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1195
+ [2021-08-24T10.15.30.719] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1196
+ [2021-08-24T10.15.30.719] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1197
+ [2021-08-24T10.15.31.338] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1198
+ [2021-08-24T10.15.54.421] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1199
+ [2021-08-24T10.15.54.508] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1200
+ [2021-08-24T10.15.54.509] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1201
+ [2021-08-24T10.15.54.515] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1202
+ [2021-08-24T10.15.54.520] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1203
+ [2021-08-24T10.15.54.521] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1204
+ [2021-08-24T10.15.55.119] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1205
+ [2021-08-24T10.16.15.273] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1206
+ [2021-08-24T10.16.15.363] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1207
+ [2021-08-24T10.16.15.364] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1208
+ [2021-08-24T10.16.15.370] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1209
+ [2021-08-24T10.16.15.373] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1210
+ [2021-08-24T10.16.15.373] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1211
+ [2021-08-24T10.16.15.954] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1212
+ [2021-08-24T10.16.38.577] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1213
+ [2021-08-24T10.16.38.580] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1214
+ [2021-08-24T10.16.38.580] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/createorder
1215
+ [2021-08-24T10.16.38.636] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1216
+ [2021-08-24T10.16.38.637] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1217
+ [2021-08-24T10.16.38.691] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1218
+ [2021-08-24T10.16.38.692] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1219
+ [2021-08-24T10.16.38.692] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1220
+ [2021-08-24T10.16.38.693] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1221
+ [2021-08-24T10.16.38.693] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1222
+ [2021-08-24T10.16.38.700] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1223
+ [2021-08-24T10.16.38.786] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1224
+ [2021-08-24T10.16.38.786] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1225
+ [2021-08-24T10.16.38.793] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1226
+ [2021-08-24T10.16.38.795] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1227
+ [2021-08-24T10.16.38.796] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1228
+ [2021-08-24T10.16.39.376] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1229
+ [2021-08-24T10.16.55.233] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1230
+ [2021-08-24T10.16.55.235] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1231
+ [2021-08-24T10.16.55.236] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/createorder
1232
+ [2021-08-24T10.16.55.284] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1233
+ [2021-08-24T10.16.55.285] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1234
+ [2021-08-24T10.16.55.333] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1235
+ [2021-08-24T10.16.55.333] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1236
+ [2021-08-24T10.16.55.334] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1237
+ [2021-08-24T10.16.55.334] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1238
+ [2021-08-24T10.16.55.335] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1239
+ [2021-08-24T10.16.55.341] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1240
+ [2021-08-24T10.16.55.422] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1241
+ [2021-08-24T10.16.55.423] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1242
+ [2021-08-24T10.16.55.430] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1243
+ [2021-08-24T10.16.55.432] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1244
+ [2021-08-24T10.16.55.433] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1245
+ [2021-08-24T10.16.59.277] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1246
+ [2021-08-24T10.16.59.279] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1247
+ [2021-08-24T10.16.59.279] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/createorder
1248
+ [2021-08-24T10.16.59.331] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1249
+ [2021-08-24T10.16.59.331] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1250
+ [2021-08-24T10.16.59.382] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1251
+ [2021-08-24T10.16.59.383] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1252
+ [2021-08-24T10.16.59.383] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1253
+ [2021-08-24T10.16.59.383] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1254
+ [2021-08-24T10.16.59.384] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1255
+ [2021-08-24T10.16.59.391] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1256
+ [2021-08-24T10.16.59.473] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1257
+ [2021-08-24T10.16.59.474] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1258
+ [2021-08-24T10.16.59.481] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1259
+ [2021-08-24T10.16.59.483] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1260
+ [2021-08-24T10.16.59.484] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1261
+ [2021-08-24T10.17.00.063] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1262
+ [2021-08-24T10.17.17.144] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1263
+ [2021-08-24T10.17.17.147] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1264
+ [2021-08-24T10.17.17.148] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/createorder
1265
+ [2021-08-24T10.17.17.196] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1266
+ [2021-08-24T10.17.17.196] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1267
+ [2021-08-24T10.17.17.245] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1268
+ [2021-08-24T10.17.17.245] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1269
+ [2021-08-24T10.17.17.246] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1270
+ [2021-08-24T10.17.17.246] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1271
+ [2021-08-24T10.17.17.246] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1272
+ [2021-08-24T10.17.17.253] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1273
+ [2021-08-24T10.17.17.336] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1274
+ [2021-08-24T10.17.17.337] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1275
+ [2021-08-24T10.17.17.343] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1276
+ [2021-08-24T10.17.17.345] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1277
+ [2021-08-24T10.17.17.346] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1278
+ [2021-08-24T10.17.17.928] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1279
+ [2021-08-24T10.17.34.855] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1280
+ [2021-08-24T10.17.34.857] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1281
+ [2021-08-24T10.17.34.858] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1282
+ [2021-08-24T10.17.34.909] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1283
+ [2021-08-24T10.17.34.910] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1284
+ [2021-08-24T10.17.34.958] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1285
+ [2021-08-24T10.17.34.959] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1286
+ [2021-08-24T10.17.34.959] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1287
+ [2021-08-24T10.17.34.960] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1288
+ [2021-08-24T10.17.34.960] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1289
+ [2021-08-24T10.17.34.967] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1290
+ [2021-08-24T10.17.35.051] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1291
+ [2021-08-24T10.17.35.052] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1292
+ [2021-08-24T10.17.35.058] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1293
+ [2021-08-24T10.17.35.060] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1294
+ [2021-08-24T10.17.35.061] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1295
+ [2021-08-24T10.17.35.197] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1296
+ [2021-08-24T10.17.35.202] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error: WHERE parameter "salt_text" has invalid "undefined" value
1297
+ at PostgresQueryGenerator.whereItemQuery (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\abstract\query-generator.js:2269:13)
1298
+ at C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\abstract\query-generator.js:2258:25
1299
+ at Array.forEach (<anonymous>)
1300
+ at PostgresQueryGenerator.whereItemsQuery (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\abstract\query-generator.js:2256:35)
1301
+ at PostgresQueryGenerator.getWhereConditions (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\abstract\query-generator.js:2674:19)
1302
+ at PostgresQueryGenerator.selectQuery (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\abstract\query-generator.js:1325:28)
1303
+ at PostgresQueryInterface.select (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\dialects\abstract\query-interface.js:954:27)
1304
+ at Function.findAll (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1753:47)
1305
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
1306
+ at async Function.findOne (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:1917:12)
1307
+ [2021-08-24T10.17.35.742] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1308
+ [2021-08-24T10.18.51.424] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1309
+ [2021-08-24T10.18.51.427] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1310
+ [2021-08-24T10.18.51.428] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1311
+ [2021-08-24T10.18.51.481] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1312
+ [2021-08-24T10.18.51.481] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1313
+ [2021-08-24T10.18.51.531] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1314
+ [2021-08-24T10.18.51.531] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1315
+ [2021-08-24T10.18.51.532] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1316
+ [2021-08-24T10.18.51.532] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1317
+ [2021-08-24T10.18.51.533] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1318
+ [2021-08-24T10.18.51.540] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1319
+ [2021-08-24T10.18.51.623] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1320
+ [2021-08-24T10.18.51.624] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1321
+ [2021-08-24T10.18.51.630] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
1322
+ [2021-08-24T10.18.51.630] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1323
+ [2021-08-24T10.18.51.633] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1324
+ [2021-08-24T10.18.51.633] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1325
+ [2021-08-24T10.18.52.230] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1326
+ [2021-08-24T10.18.53.776] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1327
+ [2021-08-24T10.18.53.837] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1328
+ user: '10',
1329
+ ip: '::1',
1330
+ agent: 'PostmanRuntime/7.28.3',
1331
+ iat: 1629786864,
1332
+ exp: 1629790464
1333
+ }
1334
+ [2021-08-24T10.18.53.839] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1335
+ [2021-08-24T10.18.53.840] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
1336
+ [2021-08-24T10.18.53.895] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1337
+ [2021-08-24T10.18.53.895] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1338
+ [2021-08-24T10.18.53.896] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1339
+ [2021-08-24T10.18.53.896] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1340
+ [2021-08-24T10.18.53.896] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1341
+ [2021-08-24T10.18.53.897] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1342
+ [2021-08-24T10.18.53.897] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1343
+ [2021-08-24T10.18.53.897] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1344
+ [2021-08-24T10.18.53.898] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1345
+ [2021-08-24T10.18.53.898] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1346
+ [2021-08-24T10.18.53.898] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1347
+ [2021-08-24T10.18.53.899] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1348
+ [2021-08-24T10.18.53.899] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1349
+ [2021-08-24T10.18.53.962] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ReferenceError: Sequelize is not defined
1350
+ at Order.attributes (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Models\Order.ts:32:31)
1351
+ at new Model (C:\PROJELER\github\Chy-Nodejs-Framework\base\Model.ts:81:33)
1352
+ at new Order (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Models\Order.ts:3:1)
1353
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:79:32)
1354
+ at Generator.next (<anonymous>)
1355
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
1356
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
1357
+ [2021-08-24T10.18.54.016] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
1358
+ [2021-08-24T10.18.54.016] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
1359
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1360
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
1361
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:96:19)
1362
+ at Generator.next (<anonymous>)
1363
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
1364
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1365
+ statusCode: 500
1366
+ }
1367
+ [2021-08-24T10.20.34.323] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1368
+ [2021-08-24T10.20.34.325] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1369
+ [2021-08-24T10.20.34.326] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1370
+ [2021-08-24T10.20.34.375] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1371
+ [2021-08-24T10.20.34.375] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1372
+ [2021-08-24T10.20.34.424] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1373
+ [2021-08-24T10.20.34.424] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1374
+ [2021-08-24T10.20.34.425] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1375
+ [2021-08-24T10.20.34.425] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1376
+ [2021-08-24T10.20.34.426] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1377
+ [2021-08-24T10.20.34.433] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1378
+ [2021-08-24T10.20.34.516] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1379
+ [2021-08-24T10.20.34.517] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1380
+ [2021-08-24T10.20.34.523] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
1381
+ [2021-08-24T10.20.34.524] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1382
+ [2021-08-24T10.20.34.526] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1383
+ [2021-08-24T10.20.34.527] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1384
+ [2021-08-24T10.20.35.054] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1385
+ [2021-08-24T10.20.35.115] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1386
+ [2021-08-24T10.20.35.166] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1387
+ user: '10',
1388
+ ip: '::1',
1389
+ agent: 'PostmanRuntime/7.28.3',
1390
+ iat: 1629786864,
1391
+ exp: 1629790464
1392
+ }
1393
+ [2021-08-24T10.20.35.168] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1394
+ [2021-08-24T10.20.35.169] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
1395
+ [2021-08-24T10.20.35.221] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1396
+ [2021-08-24T10.20.35.221] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1397
+ [2021-08-24T10.20.35.221] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1398
+ [2021-08-24T10.20.35.222] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1399
+ [2021-08-24T10.20.35.222] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1400
+ [2021-08-24T10.20.35.222] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1401
+ [2021-08-24T10.20.35.223] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1402
+ [2021-08-24T10.20.35.223] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1403
+ [2021-08-24T10.20.35.223] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1404
+ [2021-08-24T10.20.35.224] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1405
+ [2021-08-24T10.20.35.224] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1406
+ [2021-08-24T10.20.35.224] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1407
+ [2021-08-24T10.20.35.225] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1408
+ [2021-08-24T10.20.35.285] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
1409
+ [2021-08-24T10.20.35.286] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
1410
+ [2021-08-24T10.20.35.286] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 35
1411
+ [2021-08-24T10.20.35.287] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error: SequelizeValidationError: notNull Violation: Order.total cannot be null,
1412
+ notNull Violation: Order.created_date cannot be null,
1413
+ notNull Violation: Order.status cannot be null
1414
+ at Order.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Model.ts:150:19)
1415
+ at Generator.throw (<anonymous>)
1416
+ at rejected (C:\PROJELER\github\Chy-Nodejs-Framework\base\Model.ts:6:65)
1417
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
1418
+ [2021-08-24T10.20.35.339] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
1419
+ [2021-08-24T10.20.35.340] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
1420
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1421
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
1422
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:96:19)
1423
+ at Generator.next (<anonymous>)
1424
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
1425
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1426
+ statusCode: 500
1427
+ }
1428
+ [2021-08-24T10.21.07.844] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1429
+ [2021-08-24T10.21.07.847] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1430
+ [2021-08-24T10.21.07.848] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1431
+ [2021-08-24T10.21.07.915] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1432
+ [2021-08-24T10.21.07.916] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1433
+ [2021-08-24T10.21.07.988] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1434
+ [2021-08-24T10.21.07.989] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1435
+ [2021-08-24T10.21.07.989] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1436
+ [2021-08-24T10.21.07.990] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1437
+ [2021-08-24T10.21.07.990] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1438
+ [2021-08-24T10.21.07.998] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1439
+ [2021-08-24T10.21.11.875] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1440
+ [2021-08-24T10.21.11.876] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1441
+ [2021-08-24T10.21.11.883] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
1442
+ [2021-08-24T10.21.11.883] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1443
+ [2021-08-24T10.21.11.886] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1444
+ [2021-08-24T10.21.11.887] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1445
+ [2021-08-24T10.21.12.469] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1446
+ [2021-08-24T10.21.18.256] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1447
+ [2021-08-24T10.21.28.328] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1448
+ user: '10',
1449
+ ip: '::1',
1450
+ agent: 'PostmanRuntime/7.28.3',
1451
+ iat: 1629786864,
1452
+ exp: 1629790464
1453
+ }
1454
+ [2021-08-24T10.21.28.330] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1455
+ [2021-08-24T10.21.30.125] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
1456
+ [2021-08-24T10.21.30.180] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1457
+ [2021-08-24T10.21.30.181] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1458
+ [2021-08-24T10.21.30.181] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1459
+ [2021-08-24T10.21.30.182] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1460
+ [2021-08-24T10.21.30.182] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1461
+ [2021-08-24T10.21.30.183] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1462
+ [2021-08-24T10.21.30.183] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1463
+ [2021-08-24T10.21.30.184] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1464
+ [2021-08-24T10.21.30.184] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1465
+ [2021-08-24T10.21.30.185] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1466
+ [2021-08-24T10.21.30.186] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1467
+ [2021-08-24T10.21.30.186] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1468
+ [2021-08-24T10.21.30.187] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1469
+ [2021-08-24T10.21.30.253] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
1470
+ [2021-08-24T10.21.30.254] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
1471
+ [2021-08-24T10.21.30.254] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 36
1472
+ [2021-08-24T10.22.00.018] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error: SequelizeValidationError: notNull Violation: Order.total cannot be null,
1473
+ notNull Violation: Order.created_date cannot be null,
1474
+ notNull Violation: Order.status cannot be null
1475
+ at Order.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Model.ts:150:19)
1476
+ at Generator.throw (<anonymous>)
1477
+ at rejected (C:\PROJELER\github\Chy-Nodejs-Framework\base\Model.ts:6:65)
1478
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
1479
+ [2021-08-24T10.22.00.070] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
1480
+ [2021-08-24T10.22.00.071] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
1481
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1482
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
1483
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:96:19)
1484
+ at Generator.next (<anonymous>)
1485
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
1486
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1487
+ statusCode: 500
1488
+ }
1489
+ [2021-08-24T10.23.59.607] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1490
+ [2021-08-24T10.23.59.610] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1491
+ [2021-08-24T10.23.59.611] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1492
+ [2021-08-24T10.23.59.659] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1493
+ [2021-08-24T10.23.59.660] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1494
+ [2021-08-24T10.23.59.712] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1495
+ [2021-08-24T10.23.59.712] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1496
+ [2021-08-24T10.23.59.713] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1497
+ [2021-08-24T10.23.59.714] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1498
+ [2021-08-24T10.23.59.714] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1499
+ [2021-08-24T10.23.59.721] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1500
+ [2021-08-24T10.23.59.818] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1501
+ [2021-08-24T10.23.59.819] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1502
+ [2021-08-24T10.23.59.826] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
1503
+ [2021-08-24T10.23.59.827] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1504
+ [2021-08-24T10.23.59.830] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1505
+ [2021-08-24T10.23.59.830] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1506
+ [2021-08-24T10.24.00.420] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1507
+ [2021-08-24T10.24.02.073] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1508
+ [2021-08-24T10.24.02.134] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1509
+ user: '10',
1510
+ ip: '::1',
1511
+ agent: 'PostmanRuntime/7.28.3',
1512
+ iat: 1629786864,
1513
+ exp: 1629790464
1514
+ }
1515
+ [2021-08-24T10.24.02.137] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1516
+ [2021-08-24T10.24.02.138] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
1517
+ [2021-08-24T10.24.02.190] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1518
+ [2021-08-24T10.24.02.191] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1519
+ [2021-08-24T10.24.02.192] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1520
+ [2021-08-24T10.24.02.192] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1521
+ [2021-08-24T10.24.02.193] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1522
+ [2021-08-24T10.24.02.193] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1523
+ [2021-08-24T10.24.02.193] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1524
+ [2021-08-24T10.24.02.194] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1525
+ [2021-08-24T10.24.02.194] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1526
+ [2021-08-24T10.24.02.195] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1527
+ [2021-08-24T10.24.02.195] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1528
+ [2021-08-24T10.24.02.195] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1529
+ [2021-08-24T10.24.02.196] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1530
+ [2021-08-24T10.24.02.261] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
1531
+ [2021-08-24T10.24.02.262] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
1532
+ [2021-08-24T10.24.02.262] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 37
1533
+ [2021-08-24T10.24.02.264] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
1534
+ notNull Violation: Order.created_date cannot be null,
1535
+ notNull Violation: Order.status cannot be null
1536
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
1537
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
1538
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
1539
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
1540
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
1541
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
1542
+ errors: [
1543
+ ValidationErrorItem {
1544
+ message: 'Order.total cannot be null',
1545
+ type: 'notNull Violation',
1546
+ path: 'total',
1547
+ value: null,
1548
+ origin: 'CORE',
1549
+ instance: [Order],
1550
+ validatorKey: 'is_null',
1551
+ validatorName: null,
1552
+ validatorArgs: []
1553
+ },
1554
+ ValidationErrorItem {
1555
+ message: 'Order.created_date cannot be null',
1556
+ type: 'notNull Violation',
1557
+ path: 'created_date',
1558
+ value: null,
1559
+ origin: 'CORE',
1560
+ instance: [Order],
1561
+ validatorKey: 'is_null',
1562
+ validatorName: null,
1563
+ validatorArgs: []
1564
+ },
1565
+ ValidationErrorItem {
1566
+ message: 'Order.status cannot be null',
1567
+ type: 'notNull Violation',
1568
+ path: 'status',
1569
+ value: null,
1570
+ origin: 'CORE',
1571
+ instance: [Order],
1572
+ validatorKey: 'is_null',
1573
+ validatorName: null,
1574
+ validatorArgs: []
1575
+ }
1576
+ ]
1577
+ }
1578
+ [2021-08-24T10.24.05.660] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Error: SequelizeValidationError: notNull Violation: Order.total cannot be null,
1579
+ notNull Violation: Order.created_date cannot be null,
1580
+ notNull Violation: Order.status cannot be null
1581
+ at Order.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\base\Model.ts:151:19)
1582
+ at Generator.throw (<anonymous>)
1583
+ at rejected (C:\PROJELER\github\Chy-Nodejs-Framework\base\Model.ts:6:65)
1584
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
1585
+ [2021-08-24T10.24.05.712] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
1586
+ [2021-08-24T10.24.05.713] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
1587
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1588
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
1589
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:96:19)
1590
+ at Generator.next (<anonymous>)
1591
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
1592
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1593
+ statusCode: 500
1594
+ }
1595
+ [2021-08-24T10.24.48.971] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1596
+ [2021-08-24T10.24.48.974] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1597
+ [2021-08-24T10.24.48.974] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1598
+ [2021-08-24T10.24.49.022] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1599
+ [2021-08-24T10.24.49.023] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1600
+ [2021-08-24T10.24.49.074] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1601
+ [2021-08-24T10.24.49.075] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1602
+ [2021-08-24T10.24.49.075] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1603
+ [2021-08-24T10.24.49.076] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1604
+ [2021-08-24T10.24.49.076] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1605
+ [2021-08-24T10.24.49.084] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1606
+ [2021-08-24T10.24.49.177] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1607
+ [2021-08-24T10.24.49.178] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1608
+ [2021-08-24T10.24.49.184] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
1609
+ [2021-08-24T10.24.49.185] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1610
+ [2021-08-24T10.24.49.187] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1611
+ [2021-08-24T10.24.49.188] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1612
+ [2021-08-24T10.24.49.776] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1613
+ [2021-08-24T10.26.21.316] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1614
+ [2021-08-24T10.26.21.607] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1615
+ user: '10',
1616
+ ip: '::1',
1617
+ agent: 'PostmanRuntime/7.28.3',
1618
+ iat: 1629786864,
1619
+ exp: 1629790464
1620
+ }
1621
+ [2021-08-24T10.26.21.610] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1622
+ [2021-08-24T10.26.21.611] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
1623
+ [2021-08-24T10.26.21.671] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1624
+ [2021-08-24T10.26.21.672] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1625
+ [2021-08-24T10.26.21.673] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1626
+ [2021-08-24T10.26.21.673] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1627
+ [2021-08-24T10.26.21.674] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1628
+ [2021-08-24T10.26.21.674] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1629
+ [2021-08-24T10.26.21.674] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1630
+ [2021-08-24T10.26.21.675] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1631
+ [2021-08-24T10.26.21.675] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1632
+ [2021-08-24T10.26.21.676] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1633
+ [2021-08-24T10.26.21.677] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1634
+ [2021-08-24T10.26.21.677] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1635
+ [2021-08-24T10.26.21.678] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1636
+ [2021-08-24T10.26.21.751] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
1637
+ [2021-08-24T10.26.21.752] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
1638
+ [2021-08-24T10.26.21.752] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 38
1639
+ [2021-08-24T10.26.21.754] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
1640
+ notNull Violation: Order.created_date cannot be null,
1641
+ notNull Violation: Order.status cannot be null
1642
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
1643
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
1644
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
1645
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
1646
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
1647
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
1648
+ errors: [
1649
+ ValidationErrorItem {
1650
+ message: 'Order.total cannot be null',
1651
+ type: 'notNull Violation',
1652
+ path: 'total',
1653
+ value: null,
1654
+ origin: 'CORE',
1655
+ instance: [Order],
1656
+ validatorKey: 'is_null',
1657
+ validatorName: null,
1658
+ validatorArgs: []
1659
+ },
1660
+ ValidationErrorItem {
1661
+ message: 'Order.created_date cannot be null',
1662
+ type: 'notNull Violation',
1663
+ path: 'created_date',
1664
+ value: null,
1665
+ origin: 'CORE',
1666
+ instance: [Order],
1667
+ validatorKey: 'is_null',
1668
+ validatorName: null,
1669
+ validatorArgs: []
1670
+ },
1671
+ ValidationErrorItem {
1672
+ message: 'Order.status cannot be null',
1673
+ type: 'notNull Violation',
1674
+ path: 'status',
1675
+ value: null,
1676
+ origin: 'CORE',
1677
+ instance: [Order],
1678
+ validatorKey: 'is_null',
1679
+ validatorName: null,
1680
+ validatorArgs: []
1681
+ }
1682
+ ]
1683
+ }
1684
+ [2021-08-24T10.26.37.764] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
1685
+ [2021-08-24T10.26.37.766] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
1686
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1687
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
1688
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:95:19)
1689
+ at Generator.next (<anonymous>)
1690
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
1691
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1692
+ statusCode: 500
1693
+ }
1694
+ [2021-08-24T10.27.05.488] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1695
+ [2021-08-24T10.27.05.491] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1696
+ [2021-08-24T10.27.05.491] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1697
+ [2021-08-24T10.27.05.550] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1698
+ [2021-08-24T10.27.05.551] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1699
+ [2021-08-24T10.27.05.602] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1700
+ [2021-08-24T10.27.05.603] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1701
+ [2021-08-24T10.27.05.603] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1702
+ [2021-08-24T10.27.05.604] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1703
+ [2021-08-24T10.27.05.604] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1704
+ [2021-08-24T10.27.05.612] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1705
+ [2021-08-24T10.27.05.710] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1706
+ [2021-08-24T10.27.05.711] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1707
+ [2021-08-24T10.27.05.718] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
1708
+ [2021-08-24T10.27.05.718] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1709
+ [2021-08-24T10.27.05.721] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1710
+ [2021-08-24T10.27.05.721] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1711
+ [2021-08-24T10.27.06.321] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1712
+ [2021-08-24T10.27.06.691] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1713
+ [2021-08-24T10.27.06.752] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1714
+ user: '10',
1715
+ ip: '::1',
1716
+ agent: 'PostmanRuntime/7.28.3',
1717
+ iat: 1629786864,
1718
+ exp: 1629790464
1719
+ }
1720
+ [2021-08-24T10.27.06.755] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1721
+ [2021-08-24T10.27.06.755] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
1722
+ [2021-08-24T10.27.06.809] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1723
+ [2021-08-24T10.27.06.810] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1724
+ [2021-08-24T10.27.06.810] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1725
+ [2021-08-24T10.27.06.810] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1726
+ [2021-08-24T10.27.06.811] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1727
+ [2021-08-24T10.27.06.811] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1728
+ [2021-08-24T10.27.06.811] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1729
+ [2021-08-24T10.27.06.812] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1730
+ [2021-08-24T10.27.06.812] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1731
+ [2021-08-24T10.27.06.812] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1732
+ [2021-08-24T10.27.06.813] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1733
+ [2021-08-24T10.27.06.813] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1734
+ [2021-08-24T10.27.06.813] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1735
+ [2021-08-24T10.27.06.877] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
1736
+ [2021-08-24T10.28.06.386] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1737
+ [2021-08-24T10.28.06.389] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1738
+ [2021-08-24T10.28.06.390] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1739
+ [2021-08-24T10.28.06.439] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1740
+ [2021-08-24T10.28.06.440] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1741
+ [2021-08-24T10.28.06.488] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1742
+ [2021-08-24T10.28.06.488] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1743
+ [2021-08-24T10.28.06.489] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1744
+ [2021-08-24T10.28.06.489] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1745
+ [2021-08-24T10.28.06.489] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1746
+ [2021-08-24T10.28.06.497] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1747
+ [2021-08-24T10.28.06.597] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1748
+ [2021-08-24T10.28.06.598] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1749
+ [2021-08-24T10.28.06.605] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
1750
+ [2021-08-24T10.28.06.605] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1751
+ [2021-08-24T10.28.06.608] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1752
+ [2021-08-24T10.28.06.609] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1753
+ [2021-08-24T10.28.07.283] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1754
+ [2021-08-24T10.28.12.137] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1755
+ [2021-08-24T10.28.12.200] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1756
+ user: '10',
1757
+ ip: '::1',
1758
+ agent: 'PostmanRuntime/7.28.3',
1759
+ iat: 1629786864,
1760
+ exp: 1629790464
1761
+ }
1762
+ [2021-08-24T10.28.12.203] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1763
+ [2021-08-24T10.28.12.203] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
1764
+ [2021-08-24T10.28.12.257] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1765
+ [2021-08-24T10.28.12.258] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1766
+ [2021-08-24T10.28.12.258] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1767
+ [2021-08-24T10.28.12.258] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1768
+ [2021-08-24T10.28.12.259] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1769
+ [2021-08-24T10.28.12.259] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1770
+ [2021-08-24T10.28.12.260] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1771
+ [2021-08-24T10.28.12.260] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1772
+ [2021-08-24T10.28.12.260] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1773
+ [2021-08-24T10.28.12.260] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1774
+ [2021-08-24T10.28.12.261] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1775
+ [2021-08-24T10.28.12.261] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1776
+ [2021-08-24T10.28.12.261] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1777
+ [2021-08-24T10.28.12.326] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
1778
+ [2021-08-24T10.28.36.056] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1779
+ [2021-08-24T10.28.36.059] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1780
+ [2021-08-24T10.28.36.060] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1781
+ [2021-08-24T10.28.36.108] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1782
+ [2021-08-24T10.28.36.109] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1783
+ [2021-08-24T10.28.36.158] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1784
+ [2021-08-24T10.28.36.159] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1785
+ [2021-08-24T10.28.36.159] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1786
+ [2021-08-24T10.28.36.160] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1787
+ [2021-08-24T10.28.36.160] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1788
+ [2021-08-24T10.28.36.168] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1789
+ [2021-08-24T10.28.36.264] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1790
+ [2021-08-24T10.28.36.265] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1791
+ [2021-08-24T10.28.36.272] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
1792
+ [2021-08-24T10.28.36.273] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1793
+ [2021-08-24T10.28.36.276] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1794
+ [2021-08-24T10.28.36.276] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1795
+ [2021-08-24T10.28.36.325] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1796
+ [2021-08-24T10.28.36.882] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1797
+ [2021-08-24T10.28.36.884] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1798
+ user: '10',
1799
+ ip: '::1',
1800
+ agent: 'PostmanRuntime/7.28.3',
1801
+ iat: 1629786864,
1802
+ exp: 1629790464
1803
+ }
1804
+ [2021-08-24T10.28.36.886] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1805
+ [2021-08-24T10.28.36.887] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
1806
+ [2021-08-24T10.28.36.944] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1807
+ [2021-08-24T10.28.36.945] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1808
+ [2021-08-24T10.28.36.946] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1809
+ [2021-08-24T10.28.36.946] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1810
+ [2021-08-24T10.28.36.946] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1811
+ [2021-08-24T10.28.36.947] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1812
+ [2021-08-24T10.28.36.947] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1813
+ [2021-08-24T10.28.36.947] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1814
+ [2021-08-24T10.28.36.948] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1815
+ [2021-08-24T10.28.36.948] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1816
+ [2021-08-24T10.28.36.948] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1817
+ [2021-08-24T10.28.36.949] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1818
+ [2021-08-24T10.28.36.949] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1819
+ [2021-08-24T10.28.37.017] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
1820
+ [2021-08-24T10.31.26.136] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1821
+ [2021-08-24T10.31.26.139] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1822
+ [2021-08-24T10.31.26.139] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1823
+ [2021-08-24T10.31.26.190] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1824
+ [2021-08-24T10.31.26.191] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1825
+ [2021-08-24T10.31.26.245] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1826
+ [2021-08-24T10.31.26.246] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1827
+ [2021-08-24T10.31.26.247] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1828
+ [2021-08-24T10.31.26.247] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1829
+ [2021-08-24T10.31.26.248] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
1830
+ [2021-08-24T10.31.26.255] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
1831
+ [2021-08-24T10.31.26.355] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
1832
+ [2021-08-24T10.31.26.355] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
1833
+ [2021-08-24T10.31.26.362] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
1834
+ [2021-08-24T10.31.26.363] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
1835
+ [2021-08-24T10.31.26.366] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
1836
+ [2021-08-24T10.31.26.366] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
1837
+ [2021-08-24T10.31.26.950] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
1838
+ [2021-08-24T10.31.33.493] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1839
+ [2021-08-24T10.31.33.554] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1840
+ user: '10',
1841
+ ip: '::1',
1842
+ agent: 'PostmanRuntime/7.28.3',
1843
+ iat: 1629786864,
1844
+ exp: 1629790464
1845
+ }
1846
+ [2021-08-24T10.31.33.557] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1847
+ [2021-08-24T10.31.33.558] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
1848
+ [2021-08-24T10.31.33.560] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1849
+ [2021-08-24T10.31.33.561] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
1850
+ [2021-08-24T10.31.33.613] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1851
+ [2021-08-24T10.31.33.614] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1852
+ [2021-08-24T10.31.33.614] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1853
+ [2021-08-24T10.31.33.615] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1854
+ [2021-08-24T10.31.33.615] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1855
+ [2021-08-24T10.31.33.616] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1856
+ [2021-08-24T10.31.33.616] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1857
+ [2021-08-24T10.31.33.616] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1858
+ [2021-08-24T10.31.33.617] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1859
+ [2021-08-24T10.31.33.617] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1860
+ [2021-08-24T10.31.33.617] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1861
+ [2021-08-24T10.31.33.618] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1862
+ [2021-08-24T10.31.33.682] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
1863
+ [2021-08-24T10.31.33.683] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 42
1864
+ [2021-08-24T10.31.33.684] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
1865
+ notNull Violation: Order.created_date cannot be null,
1866
+ notNull Violation: Order.status cannot be null
1867
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
1868
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
1869
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
1870
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
1871
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
1872
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
1873
+ errors: [
1874
+ ValidationErrorItem {
1875
+ message: 'Order.total cannot be null',
1876
+ type: 'notNull Violation',
1877
+ path: 'total',
1878
+ value: null,
1879
+ origin: 'CORE',
1880
+ instance: [Order],
1881
+ validatorKey: 'is_null',
1882
+ validatorName: null,
1883
+ validatorArgs: []
1884
+ },
1885
+ ValidationErrorItem {
1886
+ message: 'Order.created_date cannot be null',
1887
+ type: 'notNull Violation',
1888
+ path: 'created_date',
1889
+ value: null,
1890
+ origin: 'CORE',
1891
+ instance: [Order],
1892
+ validatorKey: 'is_null',
1893
+ validatorName: null,
1894
+ validatorArgs: []
1895
+ },
1896
+ ValidationErrorItem {
1897
+ message: 'Order.status cannot be null',
1898
+ type: 'notNull Violation',
1899
+ path: 'status',
1900
+ value: null,
1901
+ origin: 'CORE',
1902
+ instance: [Order],
1903
+ validatorKey: 'is_null',
1904
+ validatorName: null,
1905
+ validatorArgs: []
1906
+ }
1907
+ ]
1908
+ }
1909
+ [2021-08-24T10.31.39.541] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
1910
+ [2021-08-24T10.31.39.543] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
1911
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
1912
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
1913
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:106:19)
1914
+ at Generator.next (<anonymous>)
1915
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
1916
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
1917
+ statusCode: 500
1918
+ }
1919
+ [2021-08-24T10.32.01.550] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
1920
+ [2021-08-24T10.32.01.842] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
1921
+ user: '10',
1922
+ ip: '::1',
1923
+ agent: 'PostmanRuntime/7.28.3',
1924
+ iat: 1629786864,
1925
+ exp: 1629790464
1926
+ }
1927
+ [2021-08-24T10.32.01.843] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
1928
+ [2021-08-24T10.32.01.844] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
1929
+ [2021-08-24T10.32.01.846] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
1930
+ [2021-08-24T10.32.01.847] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
1931
+ [2021-08-24T10.32.01.904] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
1932
+ [2021-08-24T10.32.01.905] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
1933
+ [2021-08-24T10.32.01.905] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
1934
+ [2021-08-24T10.32.01.906] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
1935
+ [2021-08-24T10.32.01.906] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
1936
+ [2021-08-24T10.32.01.907] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
1937
+ [2021-08-24T10.32.01.907] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
1938
+ [2021-08-24T10.32.01.908] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
1939
+ [2021-08-24T10.32.01.908] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
1940
+ [2021-08-24T10.32.01.908] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
1941
+ [2021-08-24T10.32.01.909] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
1942
+ [2021-08-24T10.32.01.909] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
1943
+ [2021-08-24T10.32.01.973] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
1944
+ [2021-08-24T10.32.01.973] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 43
1945
+ [2021-08-24T10.32.01.975] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
1946
+ notNull Violation: Order.created_date cannot be null,
1947
+ notNull Violation: Order.status cannot be null
1948
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
1949
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
1950
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
1951
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
1952
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
1953
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
1954
+ errors: [
1955
+ ValidationErrorItem {
1956
+ message: 'Order.total cannot be null',
1957
+ type: 'notNull Violation',
1958
+ path: 'total',
1959
+ value: null,
1960
+ origin: 'CORE',
1961
+ instance: [Order],
1962
+ validatorKey: 'is_null',
1963
+ validatorName: null,
1964
+ validatorArgs: []
1965
+ },
1966
+ ValidationErrorItem {
1967
+ message: 'Order.created_date cannot be null',
1968
+ type: 'notNull Violation',
1969
+ path: 'created_date',
1970
+ value: null,
1971
+ origin: 'CORE',
1972
+ instance: [Order],
1973
+ validatorKey: 'is_null',
1974
+ validatorName: null,
1975
+ validatorArgs: []
1976
+ },
1977
+ ValidationErrorItem {
1978
+ message: 'Order.status cannot be null',
1979
+ type: 'notNull Violation',
1980
+ path: 'status',
1981
+ value: null,
1982
+ origin: 'CORE',
1983
+ instance: [Order],
1984
+ validatorKey: 'is_null',
1985
+ validatorName: null,
1986
+ validatorArgs: []
1987
+ }
1988
+ ]
1989
+ }
1990
+ [2021-08-24T10.45.55.093] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
1991
+ [2021-08-24T10.45.55.096] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
1992
+ [2021-08-24T10.45.55.097] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
1993
+ [2021-08-24T10.45.55.146] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
1994
+ [2021-08-24T10.45.55.147] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
1995
+ [2021-08-24T10.45.55.198] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
1996
+ [2021-08-24T10.45.55.198] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
1997
+ [2021-08-24T10.45.55.198] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
1998
+ [2021-08-24T10.45.55.199] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
1999
+ [2021-08-24T10.45.55.199] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2000
+ [2021-08-24T10.45.55.206] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2001
+ [2021-08-24T10.45.55.296] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2002
+ [2021-08-24T10.45.55.297] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2003
+ [2021-08-24T10.45.55.304] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2004
+ [2021-08-24T10.45.55.304] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2005
+ [2021-08-24T10.45.55.307] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2006
+ [2021-08-24T10.45.55.307] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2007
+ [2021-08-24T10.45.55.924] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2008
+ [2021-08-24T10.45.57.842] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2009
+ [2021-08-24T10.45.57.904] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2010
+ user: '10',
2011
+ ip: '::1',
2012
+ agent: 'PostmanRuntime/7.28.3',
2013
+ iat: 1629786864,
2014
+ exp: 1629790464
2015
+ }
2016
+ [2021-08-24T10.45.57.906] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: Token Expired
2017
+ [2021-08-24T10.45.57.907] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2018
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2019
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2020
+ at JwtHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2021
+ at JwtHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:78:14)
2022
+ at JwtHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:66:36)
2023
+ at Generator.next (<anonymous>)
2024
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:5:58)
2025
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2026
+ statusCode: 500
2027
+ }
2028
+ [2021-08-24T10.46.01.663] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
2029
+ [2021-08-24T10.46.01.664] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ForbiddenHttpException: Login Required
2030
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2031
+ at new ForbiddenHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ForbiddenHttpException.ts:11:9)
2032
+ at User.loginRequired (C:\PROJELER\github\Chy-Nodejs-Framework\web\User.ts:52:15)
2033
+ at AccessControl.denyAccess (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:60:18)
2034
+ at AccessControl.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:49:22)
2035
+ at Generator.next (<anonymous>)
2036
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:8:71
2037
+ at new Promise (<anonymous>)
2038
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:4:12)
2039
+ at AccessControl.beforeAction (C:\PROJELER\github\Chy-Nodejs-Framework\filters\AccessControl.ts:42:16) {
2040
+ statusCode: 500
2041
+ }
2042
+ [2021-08-24T10.46.03.911] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2043
+ [2021-08-24T10.46.03.912] [WARN] BaseChyz [176] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Your request was made with invalid or expired JSON Web Token.
2044
+ [2021-08-24T10.46.03.912] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - UnauthorizedHttpException: Your request was made with invalid credentials.
2045
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2046
+ at new UnauthorizedHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\UnauthorizedHttpException.ts:12:9)
2047
+ at JwtHttpBearerAuth.handleFailure (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\AuthMethod.ts:64:15)
2048
+ at JwtHttpBearerAuth.fail (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:78:14)
2049
+ at JwtHttpBearerAuth.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:55:18)
2050
+ at Generator.next (<anonymous>)
2051
+ at C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:8:71
2052
+ at new Promise (<anonymous>)
2053
+ at __awaiter (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:4:12)
2054
+ at JwtHttpBearerAuth.authenticate (C:\PROJELER\github\Chy-Nodejs-Framework\filters\auth\JwtHttpBearerAuth.ts:35:16) {
2055
+ statusCode: 500
2056
+ }
2057
+ [2021-08-24T10.47.57.852] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2058
+ [2021-08-24T10.47.57.856] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2059
+ [2021-08-24T10.47.57.857] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2060
+ [2021-08-24T10.47.57.919] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2061
+ [2021-08-24T10.47.57.920] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2062
+ [2021-08-24T10.47.57.990] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2063
+ [2021-08-24T10.47.58.070] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2064
+ [2021-08-24T10.47.58.071] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2065
+ [2021-08-24T10.47.58.078] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2066
+ [2021-08-24T10.47.58.079] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2067
+ [2021-08-24T10.47.58.082] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2068
+ [2021-08-24T10.47.58.082] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2069
+ [2021-08-24T10.47.58.688] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2070
+ [2021-08-24T10.50.19.369] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2071
+ [2021-08-24T10.50.19.371] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2072
+ [2021-08-24T10.50.19.372] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2073
+ [2021-08-24T10.50.19.421] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2074
+ [2021-08-24T10.50.19.422] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2075
+ [2021-08-24T10.50.19.487] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2076
+ [2021-08-24T10.50.19.568] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2077
+ [2021-08-24T10.50.19.568] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2078
+ [2021-08-24T10.50.19.575] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2079
+ [2021-08-24T10.50.19.575] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2080
+ [2021-08-24T10.50.19.578] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2081
+ [2021-08-24T10.50.19.578] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2082
+ [2021-08-24T10.50.20.180] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2083
+ [2021-08-24T10.51.19.435] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2084
+ [2021-08-24T10.51.19.438] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2085
+ [2021-08-24T10.51.19.439] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2086
+ [2021-08-24T10.51.19.490] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2087
+ [2021-08-24T10.51.19.490] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2088
+ [2021-08-24T10.51.19.616] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2089
+ [2021-08-24T10.51.19.616] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2090
+ [2021-08-24T10.51.19.616] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2091
+ [2021-08-24T10.51.19.617] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2092
+ [2021-08-24T10.51.19.617] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2093
+ [2021-08-24T10.51.19.624] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2094
+ [2021-08-24T10.51.19.704] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2095
+ [2021-08-24T10.51.19.705] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2096
+ [2021-08-24T10.51.19.712] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2097
+ [2021-08-24T10.51.19.712] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2098
+ [2021-08-24T10.51.19.715] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2099
+ [2021-08-24T10.51.19.715] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2100
+ [2021-08-24T10.51.20.300] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2101
+ [2021-08-24T10.51.22.527] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id site
2102
+ [2021-08-24T10.51.22.527] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2103
+ [2021-08-24T10.51.22.529] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2104
+ [2021-08-24T10.51.22.587] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Db found user demo
2105
+ [2021-08-24T10.51.22.808] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Db user verify demo
2106
+ [2021-08-24T10.51.22.810] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Db user create access token demo expiresIn 1h
2107
+ [2021-08-24T10.51.26.358] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2108
+ [2021-08-24T10.51.26.413] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2109
+ user: '10',
2110
+ ip: '::1',
2111
+ agent: 'PostmanRuntime/7.28.3',
2112
+ iat: 1629791482,
2113
+ exp: 1629795082
2114
+ }
2115
+ [2021-08-24T10.51.26.415] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2116
+ [2021-08-24T10.51.26.416] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
2117
+ [2021-08-24T10.51.26.418] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2118
+ [2021-08-24T10.51.26.419] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2119
+ [2021-08-24T10.51.26.470] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2120
+ [2021-08-24T10.51.26.471] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2121
+ [2021-08-24T10.51.26.471] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2122
+ [2021-08-24T10.51.26.472] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2123
+ [2021-08-24T10.51.26.472] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2124
+ [2021-08-24T10.51.26.472] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2125
+ [2021-08-24T10.51.26.473] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2126
+ [2021-08-24T10.51.26.473] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2127
+ [2021-08-24T10.51.26.473] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2128
+ [2021-08-24T10.51.26.474] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2129
+ [2021-08-24T10.51.26.474] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2130
+ [2021-08-24T10.51.26.474] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2131
+ [2021-08-24T10.51.26.588] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
2132
+ [2021-08-24T10.51.26.589] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
2133
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2134
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
2135
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:103:19)
2136
+ at Generator.next (<anonymous>)
2137
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
2138
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2139
+ statusCode: 500
2140
+ }
2141
+ [2021-08-24T10.51.56.523] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2142
+ [2021-08-24T10.51.56.526] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2143
+ [2021-08-24T10.51.56.526] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2144
+ [2021-08-24T10.51.56.576] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2145
+ [2021-08-24T10.51.56.577] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2146
+ [2021-08-24T10.51.56.712] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2147
+ [2021-08-24T10.51.56.712] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2148
+ [2021-08-24T10.51.56.713] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2149
+ [2021-08-24T10.51.56.713] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2150
+ [2021-08-24T10.51.56.714] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2151
+ [2021-08-24T10.51.56.721] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2152
+ [2021-08-24T10.51.56.821] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2153
+ [2021-08-24T10.51.56.821] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2154
+ [2021-08-24T10.51.56.828] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2155
+ [2021-08-24T10.51.56.829] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2156
+ [2021-08-24T10.51.56.832] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2157
+ [2021-08-24T10.51.56.832] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2158
+ [2021-08-24T10.51.57.441] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2159
+ [2021-08-24T10.52.02.521] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2160
+ [2021-08-24T10.52.02.585] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2161
+ user: '10',
2162
+ ip: '::1',
2163
+ agent: 'PostmanRuntime/7.28.3',
2164
+ iat: 1629791482,
2165
+ exp: 1629795082
2166
+ }
2167
+ [2021-08-24T10.52.02.587] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2168
+ [2021-08-24T10.52.02.588] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2169
+ [2021-08-24T10.52.02.590] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2170
+ [2021-08-24T10.52.02.592] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2171
+ [2021-08-24T10.52.02.648] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2172
+ [2021-08-24T10.52.02.648] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2173
+ [2021-08-24T10.52.02.649] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2174
+ [2021-08-24T10.52.02.649] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2175
+ [2021-08-24T10.52.02.649] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2176
+ [2021-08-24T10.52.02.650] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2177
+ [2021-08-24T10.52.02.650] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2178
+ [2021-08-24T10.52.02.650] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2179
+ [2021-08-24T10.52.02.651] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2180
+ [2021-08-24T10.52.02.651] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2181
+ [2021-08-24T10.52.02.651] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2182
+ [2021-08-24T10.52.02.652] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2183
+ [2021-08-24T10.52.56.555] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2184
+ [2021-08-24T10.52.56.558] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2185
+ [2021-08-24T10.52.56.559] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2186
+ [2021-08-24T10.52.56.609] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2187
+ [2021-08-24T10.52.56.609] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2188
+ [2021-08-24T10.52.56.751] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2189
+ [2021-08-24T10.52.56.751] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2190
+ [2021-08-24T10.52.56.751] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2191
+ [2021-08-24T10.52.56.752] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2192
+ [2021-08-24T10.52.56.753] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2193
+ [2021-08-24T10.52.56.763] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2194
+ [2021-08-24T10.52.56.864] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2195
+ [2021-08-24T10.52.56.865] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2196
+ [2021-08-24T10.52.56.875] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2197
+ [2021-08-24T10.52.56.876] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2198
+ [2021-08-24T10.52.56.879] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2199
+ [2021-08-24T10.52.56.879] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2200
+ [2021-08-24T10.52.56.997] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2201
+ [2021-08-24T10.52.57.533] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2202
+ [2021-08-24T10.52.57.535] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2203
+ user: '10',
2204
+ ip: '::1',
2205
+ agent: 'PostmanRuntime/7.28.3',
2206
+ iat: 1629791482,
2207
+ exp: 1629795082
2208
+ }
2209
+ [2021-08-24T10.52.57.537] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2210
+ [2021-08-24T10.52.57.537] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2211
+ [2021-08-24T10.52.57.539] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2212
+ [2021-08-24T10.52.57.540] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2213
+ [2021-08-24T10.52.57.595] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2214
+ [2021-08-24T10.52.57.595] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2215
+ [2021-08-24T10.52.57.596] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2216
+ [2021-08-24T10.52.57.596] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2217
+ [2021-08-24T10.52.57.596] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2218
+ [2021-08-24T10.52.57.597] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2219
+ [2021-08-24T10.52.57.597] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2220
+ [2021-08-24T10.52.57.597] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2221
+ [2021-08-24T10.52.57.598] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2222
+ [2021-08-24T10.52.57.598] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2223
+ [2021-08-24T10.52.57.598] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2224
+ [2021-08-24T10.52.57.599] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2225
+ [2021-08-24T10.52.57.718] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
2226
+ [2021-08-24T10.53.02.674] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
2227
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2228
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
2229
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:103:19)
2230
+ at Generator.next (<anonymous>)
2231
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
2232
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2233
+ statusCode: 500
2234
+ }
2235
+ [2021-08-24T10.53.18.823] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2236
+ [2021-08-24T10.53.19.113] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2237
+ user: '10',
2238
+ ip: '::1',
2239
+ agent: 'PostmanRuntime/7.28.3',
2240
+ iat: 1629791482,
2241
+ exp: 1629795082
2242
+ }
2243
+ [2021-08-24T10.53.19.114] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2244
+ [2021-08-24T10.53.19.114] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
2245
+ [2021-08-24T10.53.19.116] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2246
+ [2021-08-24T10.53.19.117] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2247
+ [2021-08-24T10.53.19.173] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2248
+ [2021-08-24T10.53.19.174] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2249
+ [2021-08-24T10.53.19.174] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2250
+ [2021-08-24T10.53.19.175] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2251
+ [2021-08-24T10.53.19.175] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2252
+ [2021-08-24T10.53.19.176] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2253
+ [2021-08-24T10.53.19.177] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2254
+ [2021-08-24T10.53.19.177] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2255
+ [2021-08-24T10.53.19.177] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2256
+ [2021-08-24T10.53.19.178] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2257
+ [2021-08-24T10.53.19.178] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2258
+ [2021-08-24T10.53.19.178] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2259
+ [2021-08-24T10.53.26.616] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2260
+ [2021-08-24T10.53.26.618] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2261
+ [2021-08-24T10.53.26.619] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2262
+ [2021-08-24T10.53.26.667] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2263
+ [2021-08-24T10.53.26.667] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2264
+ [2021-08-24T10.53.26.798] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2265
+ [2021-08-24T10.53.26.798] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2266
+ [2021-08-24T10.53.26.799] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2267
+ [2021-08-24T10.53.26.799] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2268
+ [2021-08-24T10.53.26.799] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2269
+ [2021-08-24T10.53.26.806] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2270
+ [2021-08-24T10.53.26.903] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2271
+ [2021-08-24T10.53.26.904] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2272
+ [2021-08-24T10.53.26.912] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2273
+ [2021-08-24T10.53.26.913] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2274
+ [2021-08-24T10.53.26.915] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2275
+ [2021-08-24T10.53.26.916] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2276
+ [2021-08-24T10.53.27.518] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2277
+ [2021-08-24T10.53.33.990] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2278
+ [2021-08-24T10.53.34.052] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2279
+ user: '10',
2280
+ ip: '::1',
2281
+ agent: 'PostmanRuntime/7.28.3',
2282
+ iat: 1629791482,
2283
+ exp: 1629795082
2284
+ }
2285
+ [2021-08-24T10.53.34.054] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2286
+ [2021-08-24T10.53.34.055] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2287
+ [2021-08-24T10.53.34.058] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2288
+ [2021-08-24T10.53.34.059] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2289
+ [2021-08-24T10.53.34.110] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2290
+ [2021-08-24T10.53.34.111] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2291
+ [2021-08-24T10.53.34.112] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2292
+ [2021-08-24T10.53.34.112] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2293
+ [2021-08-24T10.53.34.113] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2294
+ [2021-08-24T10.53.34.113] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2295
+ [2021-08-24T10.53.34.114] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2296
+ [2021-08-24T10.53.34.114] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2297
+ [2021-08-24T10.53.34.115] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2298
+ [2021-08-24T10.53.34.115] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2299
+ [2021-08-24T10.53.34.116] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2300
+ [2021-08-24T10.53.34.116] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2301
+ [2021-08-24T10.54.36.103] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2302
+ [2021-08-24T10.54.36.105] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2303
+ [2021-08-24T10.54.36.106] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2304
+ [2021-08-24T10.54.36.154] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2305
+ [2021-08-24T10.54.36.155] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2306
+ [2021-08-24T10.54.36.288] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2307
+ [2021-08-24T10.54.36.288] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2308
+ [2021-08-24T10.54.36.288] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2309
+ [2021-08-24T10.54.36.289] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2310
+ [2021-08-24T10.54.36.289] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2311
+ [2021-08-24T10.54.36.296] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2312
+ [2021-08-24T10.54.36.395] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2313
+ [2021-08-24T10.54.36.395] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2314
+ [2021-08-24T10.54.36.404] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2315
+ [2021-08-24T10.54.36.404] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2316
+ [2021-08-24T10.54.36.407] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2317
+ [2021-08-24T10.54.36.408] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2318
+ [2021-08-24T10.54.36.990] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2319
+ [2021-08-24T10.54.37.453] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2320
+ [2021-08-24T10.54.37.516] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2321
+ user: '10',
2322
+ ip: '::1',
2323
+ agent: 'PostmanRuntime/7.28.3',
2324
+ iat: 1629791482,
2325
+ exp: 1629795082
2326
+ }
2327
+ [2021-08-24T10.54.37.518] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2328
+ [2021-08-24T10.54.37.519] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2329
+ [2021-08-24T10.54.37.521] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2330
+ [2021-08-24T10.54.37.523] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2331
+ [2021-08-24T10.54.37.576] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2332
+ [2021-08-24T10.54.37.577] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2333
+ [2021-08-24T10.54.37.577] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2334
+ [2021-08-24T10.54.37.577] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2335
+ [2021-08-24T10.54.37.578] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2336
+ [2021-08-24T10.54.37.578] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2337
+ [2021-08-24T10.54.37.578] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2338
+ [2021-08-24T10.54.37.579] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2339
+ [2021-08-24T10.54.37.579] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2340
+ [2021-08-24T10.54.37.579] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2341
+ [2021-08-24T10.54.37.580] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2342
+ [2021-08-24T10.54.37.580] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2343
+ [2021-08-24T10.56.03.328] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2344
+ [2021-08-24T10.56.03.330] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2345
+ [2021-08-24T10.56.03.331] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2346
+ [2021-08-24T10.56.03.380] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2347
+ [2021-08-24T10.56.03.381] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2348
+ [2021-08-24T10.56.03.515] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2349
+ [2021-08-24T10.56.03.515] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2350
+ [2021-08-24T10.56.03.515] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2351
+ [2021-08-24T10.56.03.516] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2352
+ [2021-08-24T10.56.03.516] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2353
+ [2021-08-24T10.56.03.524] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2354
+ [2021-08-24T10.56.03.625] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2355
+ [2021-08-24T10.56.03.626] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2356
+ [2021-08-24T10.56.03.635] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2357
+ [2021-08-24T10.56.03.636] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2358
+ [2021-08-24T10.56.03.638] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2359
+ [2021-08-24T10.56.03.639] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2360
+ [2021-08-24T10.56.04.240] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2361
+ [2021-08-24T10.56.07.166] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2362
+ [2021-08-24T10.56.07.234] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2363
+ user: '10',
2364
+ ip: '::1',
2365
+ agent: 'PostmanRuntime/7.28.3',
2366
+ iat: 1629791482,
2367
+ exp: 1629795082
2368
+ }
2369
+ [2021-08-24T10.56.07.237] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2370
+ [2021-08-24T10.56.07.238] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2371
+ [2021-08-24T10.56.07.240] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2372
+ [2021-08-24T10.56.07.241] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2373
+ [2021-08-24T10.56.07.294] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2374
+ [2021-08-24T10.56.07.295] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2375
+ [2021-08-24T10.56.07.295] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2376
+ [2021-08-24T10.56.07.296] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2377
+ [2021-08-24T10.56.07.296] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2378
+ [2021-08-24T10.56.07.297] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2379
+ [2021-08-24T10.56.07.297] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2380
+ [2021-08-24T10.56.07.297] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2381
+ [2021-08-24T10.56.07.298] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2382
+ [2021-08-24T10.56.07.298] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2383
+ [2021-08-24T10.56.07.299] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2384
+ [2021-08-24T10.56.07.299] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2385
+ [2021-08-24T11.25.28.778] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2386
+ [2021-08-24T11.25.28.781] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2387
+ [2021-08-24T11.25.28.782] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2388
+ [2021-08-24T11.25.28.831] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2389
+ [2021-08-24T11.25.28.831] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2390
+ [2021-08-24T11.25.28.978] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2391
+ [2021-08-24T11.25.28.978] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2392
+ [2021-08-24T11.25.28.979] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2393
+ [2021-08-24T11.25.28.979] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2394
+ [2021-08-24T11.25.28.980] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2395
+ [2021-08-24T11.25.28.987] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2396
+ [2021-08-24T11.25.29.099] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2397
+ [2021-08-24T11.25.29.100] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2398
+ [2021-08-24T11.25.29.110] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2399
+ [2021-08-24T11.25.29.111] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2400
+ [2021-08-24T11.25.29.114] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2401
+ [2021-08-24T11.25.29.115] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2402
+ [2021-08-24T11.25.29.758] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2403
+ [2021-08-24T11.35.04.367] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2404
+ [2021-08-24T11.35.04.654] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2405
+ user: '10',
2406
+ ip: '::1',
2407
+ agent: 'PostmanRuntime/7.28.3',
2408
+ iat: 1629791482,
2409
+ exp: 1629795082
2410
+ }
2411
+ [2021-08-24T11.35.04.657] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2412
+ [2021-08-24T11.35.04.658] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2413
+ [2021-08-24T11.35.04.660] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2414
+ [2021-08-24T11.35.04.663] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2415
+ [2021-08-24T11.35.04.717] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2416
+ [2021-08-24T11.35.04.717] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2417
+ [2021-08-24T11.35.04.718] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2418
+ [2021-08-24T11.35.04.718] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2419
+ [2021-08-24T11.35.04.719] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2420
+ [2021-08-24T11.35.04.719] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2421
+ [2021-08-24T11.35.04.720] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2422
+ [2021-08-24T11.35.04.721] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2423
+ [2021-08-24T11.35.04.721] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2424
+ [2021-08-24T11.35.04.722] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2425
+ [2021-08-24T11.35.04.722] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2426
+ [2021-08-24T11.35.04.723] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2427
+ [2021-08-24T11.35.45.741] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2428
+ [2021-08-24T11.35.45.744] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2429
+ [2021-08-24T11.35.45.745] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2430
+ [2021-08-24T11.35.45.794] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2431
+ [2021-08-24T11.35.45.795] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2432
+ [2021-08-24T11.35.45.933] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2433
+ [2021-08-24T11.35.45.933] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2434
+ [2021-08-24T11.35.45.934] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2435
+ [2021-08-24T11.35.45.934] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2436
+ [2021-08-24T11.35.45.935] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2437
+ [2021-08-24T11.35.45.942] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2438
+ [2021-08-24T11.35.46.044] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2439
+ [2021-08-24T11.35.46.044] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2440
+ [2021-08-24T11.35.46.053] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2441
+ [2021-08-24T11.35.46.054] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2442
+ [2021-08-24T11.35.46.057] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2443
+ [2021-08-24T11.35.46.057] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2444
+ [2021-08-24T11.35.46.679] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2445
+ [2021-08-24T11.35.52.723] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2446
+ [2021-08-24T11.35.52.790] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2447
+ user: '10',
2448
+ ip: '::1',
2449
+ agent: 'PostmanRuntime/7.28.3',
2450
+ iat: 1629791482,
2451
+ exp: 1629795082
2452
+ }
2453
+ [2021-08-24T11.35.52.792] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2454
+ [2021-08-24T11.35.52.793] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2455
+ [2021-08-24T11.35.52.795] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2456
+ [2021-08-24T11.35.52.796] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2457
+ [2021-08-24T11.35.52.854] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2458
+ [2021-08-24T11.35.52.854] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2459
+ [2021-08-24T11.35.52.855] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2460
+ [2021-08-24T11.35.52.855] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2461
+ [2021-08-24T11.35.52.855] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2462
+ [2021-08-24T11.35.52.856] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2463
+ [2021-08-24T11.35.52.856] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2464
+ [2021-08-24T11.35.52.857] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2465
+ [2021-08-24T11.35.52.857] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2466
+ [2021-08-24T11.35.52.858] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2467
+ [2021-08-24T11.35.52.858] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2468
+ [2021-08-24T11.35.52.859] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2469
+ [2021-08-24T11.36.47.625] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2470
+ [2021-08-24T11.36.47.627] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2471
+ [2021-08-24T11.36.47.628] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2472
+ [2021-08-24T11.36.47.677] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2473
+ [2021-08-24T11.36.47.678] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2474
+ [2021-08-24T11.36.47.811] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2475
+ [2021-08-24T11.36.47.811] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2476
+ [2021-08-24T11.36.47.811] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2477
+ [2021-08-24T11.36.47.812] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2478
+ [2021-08-24T11.36.47.812] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2479
+ [2021-08-24T11.36.47.819] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2480
+ [2021-08-24T11.36.47.917] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2481
+ [2021-08-24T11.36.47.918] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2482
+ [2021-08-24T11.36.47.927] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2483
+ [2021-08-24T11.36.47.927] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2484
+ [2021-08-24T11.36.47.930] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2485
+ [2021-08-24T11.36.47.930] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2486
+ [2021-08-24T11.36.48.576] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2487
+ [2021-08-24T11.36.56.943] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2488
+ [2021-08-24T11.36.57.010] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2489
+ user: '10',
2490
+ ip: '::1',
2491
+ agent: 'PostmanRuntime/7.28.3',
2492
+ iat: 1629791482,
2493
+ exp: 1629795082
2494
+ }
2495
+ [2021-08-24T11.36.57.012] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2496
+ [2021-08-24T11.36.57.013] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2497
+ [2021-08-24T11.36.57.015] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2498
+ [2021-08-24T11.36.57.017] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2499
+ [2021-08-24T11.36.57.073] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2500
+ [2021-08-24T11.36.57.074] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2501
+ [2021-08-24T11.36.57.075] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2502
+ [2021-08-24T11.36.57.075] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2503
+ [2021-08-24T11.36.57.075] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2504
+ [2021-08-24T11.36.57.076] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2505
+ [2021-08-24T11.36.57.076] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2506
+ [2021-08-24T11.36.57.076] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2507
+ [2021-08-24T11.36.57.077] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2508
+ [2021-08-24T11.36.57.077] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2509
+ [2021-08-24T11.36.57.077] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2510
+ [2021-08-24T11.36.57.078] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2511
+ [2021-08-24T11.37.05.547] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
2512
+ [2021-08-24T11.37.05.548] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 53
2513
+ [2021-08-24T11.37.13.355] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
2514
+ notNull Violation: Order.created_date cannot be null,
2515
+ notNull Violation: Order.status cannot be null
2516
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
2517
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
2518
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
2519
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
2520
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
2521
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
2522
+ errors: [
2523
+ ValidationErrorItem {
2524
+ message: 'Order.total cannot be null',
2525
+ type: 'notNull Violation',
2526
+ path: 'total',
2527
+ value: null,
2528
+ origin: 'CORE',
2529
+ instance: [Order],
2530
+ validatorKey: 'is_null',
2531
+ validatorName: null,
2532
+ validatorArgs: []
2533
+ },
2534
+ ValidationErrorItem {
2535
+ message: 'Order.created_date cannot be null',
2536
+ type: 'notNull Violation',
2537
+ path: 'created_date',
2538
+ value: null,
2539
+ origin: 'CORE',
2540
+ instance: [Order],
2541
+ validatorKey: 'is_null',
2542
+ validatorName: null,
2543
+ validatorArgs: []
2544
+ },
2545
+ ValidationErrorItem {
2546
+ message: 'Order.status cannot be null',
2547
+ type: 'notNull Violation',
2548
+ path: 'status',
2549
+ value: null,
2550
+ origin: 'CORE',
2551
+ instance: [Order],
2552
+ validatorKey: 'is_null',
2553
+ validatorName: null,
2554
+ validatorArgs: []
2555
+ }
2556
+ ]
2557
+ }
2558
+ [2021-08-24T11.40.41.492] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2559
+ [2021-08-24T11.40.41.786] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2560
+ user: '10',
2561
+ ip: '::1',
2562
+ agent: 'PostmanRuntime/7.28.3',
2563
+ iat: 1629791482,
2564
+ exp: 1629795082
2565
+ }
2566
+ [2021-08-24T11.40.41.787] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2567
+ [2021-08-24T11.40.41.788] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
2568
+ [2021-08-24T11.40.41.790] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2569
+ [2021-08-24T11.40.41.791] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2570
+ [2021-08-24T11.40.41.850] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2571
+ [2021-08-24T11.40.41.851] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2572
+ [2021-08-24T11.40.41.852] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2573
+ [2021-08-24T11.40.41.852] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2574
+ [2021-08-24T11.40.41.853] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2575
+ [2021-08-24T11.40.41.854] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2576
+ [2021-08-24T11.40.41.854] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2577
+ [2021-08-24T11.40.41.855] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2578
+ [2021-08-24T11.40.41.855] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2579
+ [2021-08-24T11.40.41.855] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2580
+ [2021-08-24T11.40.41.856] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2581
+ [2021-08-24T11.40.41.856] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2582
+ [2021-08-24T11.40.48.589] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
2583
+ [2021-08-24T11.40.48.591] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 54
2584
+ [2021-08-24T11.40.48.592] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
2585
+ notNull Violation: Order.created_date cannot be null,
2586
+ notNull Violation: Order.status cannot be null
2587
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
2588
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
2589
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
2590
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
2591
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
2592
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
2593
+ errors: [
2594
+ ValidationErrorItem {
2595
+ message: 'Order.total cannot be null',
2596
+ type: 'notNull Violation',
2597
+ path: 'total',
2598
+ value: null,
2599
+ origin: 'CORE',
2600
+ instance: [Order],
2601
+ validatorKey: 'is_null',
2602
+ validatorName: null,
2603
+ validatorArgs: []
2604
+ },
2605
+ ValidationErrorItem {
2606
+ message: 'Order.created_date cannot be null',
2607
+ type: 'notNull Violation',
2608
+ path: 'created_date',
2609
+ value: null,
2610
+ origin: 'CORE',
2611
+ instance: [Order],
2612
+ validatorKey: 'is_null',
2613
+ validatorName: null,
2614
+ validatorArgs: []
2615
+ },
2616
+ ValidationErrorItem {
2617
+ message: 'Order.status cannot be null',
2618
+ type: 'notNull Violation',
2619
+ path: 'status',
2620
+ value: null,
2621
+ origin: 'CORE',
2622
+ instance: [Order],
2623
+ validatorKey: 'is_null',
2624
+ validatorName: null,
2625
+ validatorArgs: []
2626
+ }
2627
+ ]
2628
+ }
2629
+ [2021-08-24T11.41.49.115] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2630
+ [2021-08-24T11.41.49.118] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2631
+ [2021-08-24T11.41.49.118] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2632
+ [2021-08-24T11.41.49.167] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2633
+ [2021-08-24T11.41.49.167] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2634
+ [2021-08-24T11.41.49.301] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2635
+ [2021-08-24T11.41.49.301] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2636
+ [2021-08-24T11.41.49.302] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2637
+ [2021-08-24T11.41.49.302] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2638
+ [2021-08-24T11.41.49.302] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2639
+ [2021-08-24T11.41.49.309] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2640
+ [2021-08-24T11.41.49.408] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2641
+ [2021-08-24T11.41.49.409] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2642
+ [2021-08-24T11.41.49.418] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2643
+ [2021-08-24T11.41.49.418] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2644
+ [2021-08-24T11.41.49.421] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2645
+ [2021-08-24T11.41.49.422] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2646
+ [2021-08-24T11.41.50.032] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2647
+ [2021-08-24T11.41.51.093] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2648
+ [2021-08-24T11.41.51.161] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2649
+ user: '10',
2650
+ ip: '::1',
2651
+ agent: 'PostmanRuntime/7.28.3',
2652
+ iat: 1629791482,
2653
+ exp: 1629795082
2654
+ }
2655
+ [2021-08-24T11.41.51.163] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2656
+ [2021-08-24T11.41.51.165] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2657
+ [2021-08-24T11.41.51.167] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2658
+ [2021-08-24T11.41.51.168] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2659
+ [2021-08-24T11.41.51.224] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2660
+ [2021-08-24T11.41.51.225] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2661
+ [2021-08-24T11.41.51.225] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2662
+ [2021-08-24T11.41.51.226] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2663
+ [2021-08-24T11.41.51.226] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2664
+ [2021-08-24T11.41.51.227] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2665
+ [2021-08-24T11.41.51.227] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2666
+ [2021-08-24T11.41.51.228] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2667
+ [2021-08-24T11.41.51.228] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2668
+ [2021-08-24T11.41.51.229] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2669
+ [2021-08-24T11.41.51.229] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2670
+ [2021-08-24T11.41.51.229] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2671
+ [2021-08-24T11.41.51.298] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
2672
+ [2021-08-24T11.41.51.299] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 55
2673
+ [2021-08-24T11.41.51.300] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
2674
+ notNull Violation: Order.created_date cannot be null,
2675
+ notNull Violation: Order.status cannot be null
2676
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
2677
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
2678
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
2679
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
2680
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
2681
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
2682
+ errors: [
2683
+ ValidationErrorItem {
2684
+ message: 'Order.total cannot be null',
2685
+ type: 'notNull Violation',
2686
+ path: 'total',
2687
+ value: null,
2688
+ origin: 'CORE',
2689
+ instance: [Order],
2690
+ validatorKey: 'is_null',
2691
+ validatorName: null,
2692
+ validatorArgs: []
2693
+ },
2694
+ ValidationErrorItem {
2695
+ message: 'Order.created_date cannot be null',
2696
+ type: 'notNull Violation',
2697
+ path: 'created_date',
2698
+ value: null,
2699
+ origin: 'CORE',
2700
+ instance: [Order],
2701
+ validatorKey: 'is_null',
2702
+ validatorName: null,
2703
+ validatorArgs: []
2704
+ },
2705
+ ValidationErrorItem {
2706
+ message: 'Order.status cannot be null',
2707
+ type: 'notNull Violation',
2708
+ path: 'status',
2709
+ value: null,
2710
+ origin: 'CORE',
2711
+ instance: [Order],
2712
+ validatorKey: 'is_null',
2713
+ validatorName: null,
2714
+ validatorArgs: []
2715
+ }
2716
+ ]
2717
+ }
2718
+ [2021-08-24T11.41.55.328] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
2719
+ [2021-08-24T11.41.56.960] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
2720
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2721
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
2722
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:106:19)
2723
+ at Generator.next (<anonymous>)
2724
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
2725
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2726
+ statusCode: 500
2727
+ }
2728
+ [2021-08-24T11.42.13.160] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2729
+ [2021-08-24T11.42.13.163] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2730
+ [2021-08-24T11.42.13.163] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2731
+ [2021-08-24T11.42.13.212] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2732
+ [2021-08-24T11.42.13.213] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2733
+ [2021-08-24T11.42.13.354] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2734
+ [2021-08-24T11.42.13.354] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2735
+ [2021-08-24T11.42.13.355] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2736
+ [2021-08-24T11.42.13.355] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2737
+ [2021-08-24T11.42.13.355] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2738
+ [2021-08-24T11.42.13.363] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2739
+ [2021-08-24T11.42.13.463] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2740
+ [2021-08-24T11.42.13.463] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2741
+ [2021-08-24T11.42.13.470] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2742
+ [2021-08-24T11.42.13.471] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2743
+ [2021-08-24T11.42.13.474] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2744
+ [2021-08-24T11.42.13.475] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2745
+ [2021-08-24T11.42.13.576] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2746
+ [2021-08-24T11.42.14.070] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2747
+ [2021-08-24T11.42.14.076] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2748
+ user: '10',
2749
+ ip: '::1',
2750
+ agent: 'PostmanRuntime/7.28.3',
2751
+ iat: 1629791482,
2752
+ exp: 1629795082
2753
+ }
2754
+ [2021-08-24T11.42.14.078] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2755
+ [2021-08-24T11.42.14.079] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2756
+ [2021-08-24T11.42.14.082] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2757
+ [2021-08-24T11.42.14.083] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2758
+ [2021-08-24T11.42.14.140] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2759
+ [2021-08-24T11.42.14.141] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2760
+ [2021-08-24T11.42.14.141] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2761
+ [2021-08-24T11.42.14.142] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2762
+ [2021-08-24T11.42.14.142] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2763
+ [2021-08-24T11.42.14.143] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2764
+ [2021-08-24T11.42.14.143] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2765
+ [2021-08-24T11.42.14.144] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2766
+ [2021-08-24T11.42.14.144] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2767
+ [2021-08-24T11.42.14.144] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2768
+ [2021-08-24T11.42.14.145] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2769
+ [2021-08-24T11.42.14.145] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2770
+ [2021-08-24T11.42.14.214] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
2771
+ [2021-08-24T11.42.36.014] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2772
+ [2021-08-24T11.42.36.017] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2773
+ [2021-08-24T11.42.36.017] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2774
+ [2021-08-24T11.42.36.065] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2775
+ [2021-08-24T11.42.36.065] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2776
+ [2021-08-24T11.42.36.199] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2777
+ [2021-08-24T11.42.36.200] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2778
+ [2021-08-24T11.42.36.200] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2779
+ [2021-08-24T11.42.36.200] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2780
+ [2021-08-24T11.42.36.201] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2781
+ [2021-08-24T11.42.36.208] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2782
+ [2021-08-24T11.42.36.304] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2783
+ [2021-08-24T11.42.36.305] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2784
+ [2021-08-24T11.42.36.314] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2785
+ [2021-08-24T11.42.36.314] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2786
+ [2021-08-24T11.42.36.317] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2787
+ [2021-08-24T11.42.36.317] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2788
+ [2021-08-24T11.42.36.905] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2789
+ [2021-08-24T11.42.45.773] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2790
+ [2021-08-24T11.42.45.776] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2791
+ [2021-08-24T11.42.45.777] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2792
+ [2021-08-24T11.42.45.826] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2793
+ [2021-08-24T11.42.45.826] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2794
+ [2021-08-24T11.42.45.960] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2795
+ [2021-08-24T11.42.45.961] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2796
+ [2021-08-24T11.42.45.961] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2797
+ [2021-08-24T11.42.45.962] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2798
+ [2021-08-24T11.42.45.962] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2799
+ [2021-08-24T11.42.45.969] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2800
+ [2021-08-24T11.42.46.066] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2801
+ [2021-08-24T11.42.46.067] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2802
+ [2021-08-24T11.42.46.076] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2803
+ [2021-08-24T11.42.46.077] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2804
+ [2021-08-24T11.42.46.080] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2805
+ [2021-08-24T11.42.46.080] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2806
+ [2021-08-24T11.42.46.683] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2807
+ [2021-08-24T11.42.50.236] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2808
+ [2021-08-24T11.42.50.299] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2809
+ user: '10',
2810
+ ip: '::1',
2811
+ agent: 'PostmanRuntime/7.28.3',
2812
+ iat: 1629791482,
2813
+ exp: 1629795082
2814
+ }
2815
+ [2021-08-24T11.42.50.301] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2816
+ [2021-08-24T11.42.50.302] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2817
+ [2021-08-24T11.42.50.305] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2818
+ [2021-08-24T11.42.50.306] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2819
+ [2021-08-24T11.42.50.360] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2820
+ [2021-08-24T11.42.50.361] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2821
+ [2021-08-24T11.42.50.361] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2822
+ [2021-08-24T11.42.50.361] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2823
+ [2021-08-24T11.42.50.362] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2824
+ [2021-08-24T11.42.50.362] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2825
+ [2021-08-24T11.42.50.363] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2826
+ [2021-08-24T11.42.50.363] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2827
+ [2021-08-24T11.42.50.364] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2828
+ [2021-08-24T11.42.50.364] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2829
+ [2021-08-24T11.42.50.364] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2830
+ [2021-08-24T11.42.50.365] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2831
+ [2021-08-24T11.42.50.431] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
2832
+ [2021-08-24T11.42.50.432] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 57
2833
+ [2021-08-24T11.42.50.434] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
2834
+ notNull Violation: Order.created_date cannot be null,
2835
+ notNull Violation: Order.status cannot be null
2836
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
2837
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
2838
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
2839
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
2840
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
2841
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
2842
+ errors: [
2843
+ ValidationErrorItem {
2844
+ message: 'Order.total cannot be null',
2845
+ type: 'notNull Violation',
2846
+ path: 'total',
2847
+ value: null,
2848
+ origin: 'CORE',
2849
+ instance: [Order],
2850
+ validatorKey: 'is_null',
2851
+ validatorName: null,
2852
+ validatorArgs: []
2853
+ },
2854
+ ValidationErrorItem {
2855
+ message: 'Order.created_date cannot be null',
2856
+ type: 'notNull Violation',
2857
+ path: 'created_date',
2858
+ value: null,
2859
+ origin: 'CORE',
2860
+ instance: [Order],
2861
+ validatorKey: 'is_null',
2862
+ validatorName: null,
2863
+ validatorArgs: []
2864
+ },
2865
+ ValidationErrorItem {
2866
+ message: 'Order.status cannot be null',
2867
+ type: 'notNull Violation',
2868
+ path: 'status',
2869
+ value: null,
2870
+ origin: 'CORE',
2871
+ instance: [Order],
2872
+ validatorKey: 'is_null',
2873
+ validatorName: null,
2874
+ validatorArgs: []
2875
+ }
2876
+ ]
2877
+ }
2878
+ [2021-08-24T11.43.00.172] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
2879
+ [2021-08-24T11.43.01.477] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
2880
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2881
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
2882
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:106:19)
2883
+ at Generator.next (<anonymous>)
2884
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
2885
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2886
+ statusCode: 500
2887
+ }
2888
+ [2021-08-24T11.43.16.961] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2889
+ [2021-08-24T11.43.17.229] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2890
+ user: '10',
2891
+ ip: '::1',
2892
+ agent: 'PostmanRuntime/7.28.3',
2893
+ iat: 1629791482,
2894
+ exp: 1629795082
2895
+ }
2896
+ [2021-08-24T11.43.17.230] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2897
+ [2021-08-24T11.43.17.231] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
2898
+ [2021-08-24T11.43.17.233] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2899
+ [2021-08-24T11.43.17.234] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2900
+ [2021-08-24T11.43.17.285] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
2901
+ [2021-08-24T11.43.17.286] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
2902
+ [2021-08-24T11.43.17.286] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
2903
+ [2021-08-24T11.43.17.287] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
2904
+ [2021-08-24T11.43.17.287] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
2905
+ [2021-08-24T11.43.17.289] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
2906
+ [2021-08-24T11.43.17.289] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
2907
+ [2021-08-24T11.43.17.289] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
2908
+ [2021-08-24T11.43.17.290] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
2909
+ [2021-08-24T11.43.17.290] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
2910
+ [2021-08-24T11.43.17.290] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
2911
+ [2021-08-24T11.43.17.291] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
2912
+ [2021-08-24T11.43.17.359] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
2913
+ [2021-08-24T11.43.17.360] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 58
2914
+ [2021-08-24T11.43.17.362] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
2915
+ notNull Violation: Order.created_date cannot be null,
2916
+ notNull Violation: Order.status cannot be null
2917
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
2918
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
2919
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
2920
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
2921
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
2922
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
2923
+ errors: [
2924
+ ValidationErrorItem {
2925
+ message: 'Order.total cannot be null',
2926
+ type: 'notNull Violation',
2927
+ path: 'total',
2928
+ value: null,
2929
+ origin: 'CORE',
2930
+ instance: [Order],
2931
+ validatorKey: 'is_null',
2932
+ validatorName: null,
2933
+ validatorArgs: []
2934
+ },
2935
+ ValidationErrorItem {
2936
+ message: 'Order.created_date cannot be null',
2937
+ type: 'notNull Violation',
2938
+ path: 'created_date',
2939
+ value: null,
2940
+ origin: 'CORE',
2941
+ instance: [Order],
2942
+ validatorKey: 'is_null',
2943
+ validatorName: null,
2944
+ validatorArgs: []
2945
+ },
2946
+ ValidationErrorItem {
2947
+ message: 'Order.status cannot be null',
2948
+ type: 'notNull Violation',
2949
+ path: 'status',
2950
+ value: null,
2951
+ origin: 'CORE',
2952
+ instance: [Order],
2953
+ validatorKey: 'is_null',
2954
+ validatorName: null,
2955
+ validatorArgs: []
2956
+ }
2957
+ ]
2958
+ }
2959
+ [2021-08-24T11.43.41.780] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
2960
+ [2021-08-24T11.43.42.721] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
2961
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
2962
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
2963
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:106:19)
2964
+ at Generator.next (<anonymous>)
2965
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
2966
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
2967
+ statusCode: 500
2968
+ }
2969
+ [2021-08-24T11.43.51.047] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
2970
+ [2021-08-24T11.43.51.049] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
2971
+ [2021-08-24T11.43.51.050] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
2972
+ [2021-08-24T11.43.51.098] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
2973
+ [2021-08-24T11.43.51.098] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
2974
+ [2021-08-24T11.43.51.230] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
2975
+ [2021-08-24T11.43.51.230] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
2976
+ [2021-08-24T11.43.51.231] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
2977
+ [2021-08-24T11.43.51.231] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
2978
+ [2021-08-24T11.43.51.232] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
2979
+ [2021-08-24T11.43.51.239] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
2980
+ [2021-08-24T11.43.51.338] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
2981
+ [2021-08-24T11.43.51.339] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
2982
+ [2021-08-24T11.43.51.346] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
2983
+ [2021-08-24T11.43.51.346] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
2984
+ [2021-08-24T11.43.51.349] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
2985
+ [2021-08-24T11.43.51.350] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
2986
+ [2021-08-24T11.43.51.983] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
2987
+ [2021-08-24T11.43.54.222] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
2988
+ [2021-08-24T11.43.54.286] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
2989
+ user: '10',
2990
+ ip: '::1',
2991
+ agent: 'PostmanRuntime/7.28.3',
2992
+ iat: 1629791482,
2993
+ exp: 1629795082
2994
+ }
2995
+ [2021-08-24T11.43.54.289] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
2996
+ [2021-08-24T11.43.54.290] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
2997
+ [2021-08-24T11.43.54.292] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
2998
+ [2021-08-24T11.43.54.293] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
2999
+ [2021-08-24T11.43.54.347] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
3000
+ [2021-08-24T11.43.54.348] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
3001
+ [2021-08-24T11.43.54.349] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
3002
+ [2021-08-24T11.43.54.349] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
3003
+ [2021-08-24T11.43.54.350] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
3004
+ [2021-08-24T11.43.54.350] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
3005
+ [2021-08-24T11.43.54.350] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
3006
+ [2021-08-24T11.43.54.351] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
3007
+ [2021-08-24T11.43.54.351] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
3008
+ [2021-08-24T11.43.54.351] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
3009
+ [2021-08-24T11.43.54.352] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
3010
+ [2021-08-24T11.43.54.352] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
3011
+ [2021-08-24T11.43.54.419] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
3012
+ [2021-08-24T11.43.54.420] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 59
3013
+ [2021-08-24T11.43.54.422] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
3014
+ notNull Violation: Order.created_date cannot be null,
3015
+ notNull Violation: Order.status cannot be null
3016
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
3017
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
3018
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
3019
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
3020
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
3021
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
3022
+ errors: [
3023
+ ValidationErrorItem {
3024
+ message: 'Order.total cannot be null',
3025
+ type: 'notNull Violation',
3026
+ path: 'total',
3027
+ value: null,
3028
+ origin: 'CORE',
3029
+ instance: [Order],
3030
+ validatorKey: 'is_null',
3031
+ validatorName: null,
3032
+ validatorArgs: []
3033
+ },
3034
+ ValidationErrorItem {
3035
+ message: 'Order.created_date cannot be null',
3036
+ type: 'notNull Violation',
3037
+ path: 'created_date',
3038
+ value: null,
3039
+ origin: 'CORE',
3040
+ instance: [Order],
3041
+ validatorKey: 'is_null',
3042
+ validatorName: null,
3043
+ validatorArgs: []
3044
+ },
3045
+ ValidationErrorItem {
3046
+ message: 'Order.status cannot be null',
3047
+ type: 'notNull Violation',
3048
+ path: 'status',
3049
+ value: null,
3050
+ origin: 'CORE',
3051
+ instance: [Order],
3052
+ validatorKey: 'is_null',
3053
+ validatorName: null,
3054
+ validatorArgs: []
3055
+ }
3056
+ ]
3057
+ }
3058
+ [2021-08-24T11.43.54.477] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
3059
+ [2021-08-24T11.43.56.890] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
3060
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
3061
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
3062
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:105:19)
3063
+ at Generator.next (<anonymous>)
3064
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
3065
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
3066
+ statusCode: 500
3067
+ }
3068
+ [2021-08-24T11.44.13.146] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
3069
+ [2021-08-24T11.44.13.408] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
3070
+ user: '10',
3071
+ ip: '::1',
3072
+ agent: 'PostmanRuntime/7.28.3',
3073
+ iat: 1629791482,
3074
+ exp: 1629795082
3075
+ }
3076
+ [2021-08-24T11.44.13.409] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
3077
+ [2021-08-24T11.44.13.409] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_2
3078
+ [2021-08-24T11.44.13.411] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
3079
+ [2021-08-24T11.44.13.412] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
3080
+ [2021-08-24T11.44.13.463] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
3081
+ [2021-08-24T11.44.13.464] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
3082
+ [2021-08-24T11.44.13.464] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
3083
+ [2021-08-24T11.44.13.465] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
3084
+ [2021-08-24T11.44.13.465] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
3085
+ [2021-08-24T11.44.13.466] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
3086
+ [2021-08-24T11.44.13.467] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
3087
+ [2021-08-24T11.44.13.467] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
3088
+ [2021-08-24T11.44.13.467] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
3089
+ [2021-08-24T11.44.13.468] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
3090
+ [2021-08-24T11.44.13.468] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
3091
+ [2021-08-24T11.44.13.469] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
3092
+ [2021-08-24T11.44.13.529] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
3093
+ [2021-08-24T11.44.13.530] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 60
3094
+ [2021-08-24T11.44.13.531] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
3095
+ notNull Violation: Order.created_date cannot be null,
3096
+ notNull Violation: Order.status cannot be null
3097
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
3098
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
3099
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
3100
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
3101
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
3102
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
3103
+ errors: [
3104
+ ValidationErrorItem {
3105
+ message: 'Order.total cannot be null',
3106
+ type: 'notNull Violation',
3107
+ path: 'total',
3108
+ value: null,
3109
+ origin: 'CORE',
3110
+ instance: [Order],
3111
+ validatorKey: 'is_null',
3112
+ validatorName: null,
3113
+ validatorArgs: []
3114
+ },
3115
+ ValidationErrorItem {
3116
+ message: 'Order.created_date cannot be null',
3117
+ type: 'notNull Violation',
3118
+ path: 'created_date',
3119
+ value: null,
3120
+ origin: 'CORE',
3121
+ instance: [Order],
3122
+ validatorKey: 'is_null',
3123
+ validatorName: null,
3124
+ validatorArgs: []
3125
+ },
3126
+ ValidationErrorItem {
3127
+ message: 'Order.status cannot be null',
3128
+ type: 'notNull Violation',
3129
+ path: 'status',
3130
+ value: null,
3131
+ origin: 'CORE',
3132
+ instance: [Order],
3133
+ validatorKey: 'is_null',
3134
+ validatorName: null,
3135
+ validatorArgs: []
3136
+ }
3137
+ ]
3138
+ }
3139
+ [2021-08-24T11.45.48.545] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
3140
+ [2021-08-24T11.45.48.548] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
3141
+ [2021-08-24T11.45.48.549] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
3142
+ [2021-08-24T11.45.48.599] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
3143
+ [2021-08-24T11.45.48.599] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
3144
+ [2021-08-24T11.45.48.729] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
3145
+ [2021-08-24T11.45.48.729] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
3146
+ [2021-08-24T11.45.48.729] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
3147
+ [2021-08-24T11.45.48.730] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
3148
+ [2021-08-24T11.45.48.730] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
3149
+ [2021-08-24T11.45.48.737] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
3150
+ [2021-08-24T11.45.48.834] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
3151
+ [2021-08-24T11.45.48.835] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
3152
+ [2021-08-24T11.45.48.842] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
3153
+ [2021-08-24T11.45.48.843] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
3154
+ [2021-08-24T11.45.48.845] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
3155
+ [2021-08-24T11.45.48.846] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
3156
+ [2021-08-24T11.45.49.524] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Call Request id api
3157
+ [2021-08-24T11.45.49.583] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.
3158
+ [2021-08-24T11.45.49.653] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Found {
3159
+ user: '10',
3160
+ ip: '::1',
3161
+ agent: 'PostmanRuntime/7.28.3',
3162
+ iat: 1629791482,
3163
+ exp: 1629795082
3164
+ }
3165
+ [2021-08-24T11.45.49.656] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Find Identity By AccessToken: User Verify Success
3166
+ [2021-08-24T11.45.49.657] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Request ID chyzzzz_1
3167
+ [2021-08-24T11.45.49.659] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Customer
3168
+ [2021-08-24T11.45.49.660] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... Order
3169
+ [2021-08-24T11.45.49.736] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set name cihan
3170
+ [2021-08-24T11.45.49.737] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set firstname lastname
3171
+ [2021-08-24T11.45.49.737] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set lastname lastname
3172
+ [2021-08-24T11.45.49.738] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set username cihan@chy.com.tr
3173
+ [2021-08-24T11.45.49.738] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set companyName 01hubbox io Şeker Öncü Çakmak
3174
+ [2021-08-24T11.45.49.739] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set password cihan589697.Ass
3175
+ [2021-08-24T11.45.49.739] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set email cihan@chy.com.tr
3176
+ [2021-08-24T11.45.49.740] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set gsm_phone 5444389697
3177
+ [2021-08-24T11.45.49.740] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set country TR
3178
+ [2021-08-24T11.45.49.740] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set address Kazımkarabekir mh. 1051 sk. no 2 daire 16
3179
+ [2021-08-24T11.45.49.741] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set status true
3180
+ [2021-08-24T11.45.49.741] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Customer] attributes value set 2fa true
3181
+ [2021-08-24T11.45.49.828] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set crm_order_id 1
3182
+ [2021-08-24T11.45.49.829] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order] attributes value set customer_id 61
3183
+ [2021-08-24T11.45.49.830] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model[Order].create ValidationError [SequelizeValidationError]: notNull Violation: Order.total cannot be null,
3184
+ notNull Violation: Order.created_date cannot be null,
3185
+ notNull Violation: Order.status cannot be null
3186
+ at InstanceValidator._validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:78:13)
3187
+ at processTicksAndRejections (internal/process/task_queues.js:93:5)
3188
+ at async InstanceValidator._validateAndRunHooks (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:111:7)
3189
+ at async InstanceValidator.validate (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\instance-validator.js:93:12)
3190
+ at async model.save (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:3890:7)
3191
+ at async Function.create (C:\PROJELER\github\Chy-Nodejs-Framework\node_modules\sequelize\lib\model.js:2207:12) {
3192
+ errors: [
3193
+ ValidationErrorItem {
3194
+ message: 'Order.total cannot be null',
3195
+ type: 'notNull Violation',
3196
+ path: 'total',
3197
+ value: null,
3198
+ origin: 'CORE',
3199
+ instance: [Order],
3200
+ validatorKey: 'is_null',
3201
+ validatorName: null,
3202
+ validatorArgs: []
3203
+ },
3204
+ ValidationErrorItem {
3205
+ message: 'Order.created_date cannot be null',
3206
+ type: 'notNull Violation',
3207
+ path: 'created_date',
3208
+ value: null,
3209
+ origin: 'CORE',
3210
+ instance: [Order],
3211
+ validatorKey: 'is_null',
3212
+ validatorName: null,
3213
+ validatorArgs: []
3214
+ },
3215
+ ValidationErrorItem {
3216
+ message: 'Order.status cannot be null',
3217
+ type: 'notNull Violation',
3218
+ path: 'status',
3219
+ value: null,
3220
+ origin: 'CORE',
3221
+ instance: [Order],
3222
+ validatorKey: 'is_null',
3223
+ validatorName: null,
3224
+ validatorArgs: []
3225
+ }
3226
+ ]
3227
+ }
3228
+ [2021-08-24T11.45.49.833] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
3229
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
3230
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
3231
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:94:23)
3232
+ at Generator.next (<anonymous>)
3233
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
3234
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
3235
+ statusCode: 500
3236
+ }
3237
+ [2021-08-24T11.45.49.909] [WARN] BaseChyz [161] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Rollback transaction
3238
+ [2021-08-24T11.45.51.892] [ERROR] BaseChyz [165] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - ValidationHttpException: [object Object]
3239
+ at new BaseError (C:\PROJELER\github\Chy-Nodejs-Framework\base\BaseError.ts:16:15)
3240
+ at new ValidationHttpException (C:\PROJELER\github\Chy-Nodejs-Framework\base\ValidationHttpException.ts:12:9)
3241
+ at ApiController.<anonymous> (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:108:23)
3242
+ at Generator.next (<anonymous>)
3243
+ at fulfilled (C:\PROJELER\github\Chy-Nodejs-Framework\Examples\Controllers\ApiController.ts:14:58)
3244
+ at processTicksAndRejections (internal/process/task_queues.js:93:5) {
3245
+ statusCode: 500
3246
+ }
3247
+ [2021-08-24T11.46.22.111] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load ApiController (/api)
3248
+ [2021-08-24T11.46.22.114] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/
3249
+ [2021-08-24T11.46.22.114] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /api/orderCreate
3250
+ [2021-08-24T11.46.22.163] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load PublicController (/public)
3251
+ [2021-08-24T11.46.22.164] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /public/
3252
+ [2021-08-24T11.46.22.298] [DEBUG] BaseChyz [230] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller load SiteController (/site)
3253
+ [2021-08-24T11.46.22.298] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/index
3254
+ [2021-08-24T11.46.22.298] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/login
3255
+ [2021-08-24T11.46.22.299] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/logout
3256
+ [2021-08-24T11.46.22.299] [DEBUG] BaseChyz [237] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Controller route Path /site/signup
3257
+ [2021-08-24T11.46.22.307] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component db
3258
+ [2021-08-24T11.46.22.406] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Create Component user
3259
+ [2021-08-24T11.46.22.407] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - BaseObject init.....
3260
+ [2021-08-24T11.46.22.416] [DEBUG] BaseChyz [155] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Model init.... User
3261
+ [2021-08-24T11.46.22.416] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Starting
3262
+ [2021-08-24T11.46.22.419] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Express Server Start
3263
+ [2021-08-24T11.46.22.420] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Liten Port 3000
3264
+ [2021-08-24T11.46.23.005] [INFO] BaseChyz [158] [C:\PROJELER\github\Chy-Nodejs-Framework\BaseChyz.ts] - Connection has been established successfully.