corecdtl 0.1.5 → 0.1.6

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.
@@ -71,7 +71,6 @@ class WebContext extends HttpContext_1.default {
71
71
  this.contentTypeParsers = parser_1.contentParserTable;
72
72
  this.parseInitial = (socket, chunk, p) => {
73
73
  const routeId = this.httpCore.scannerRouteFirst(chunk, p, this.state.maxHeaderNameSize, this.state.maxHeaderValueSize, this.state.maxContentSize, this.state.requestQuerySize);
74
- console.log(chunk.toString());
75
74
  if (p.retFlag !== http_1.Http.RetFlagBits.FLAG_OK) {
76
75
  switch (p.retFlag) {
77
76
  // --- CORS 204 ---
@@ -388,7 +388,6 @@ Napi::Value HttpCore::PrintRouteTree(const Napi::CallbackInfo& info) {
388
388
  default:
389
389
  break;
390
390
  }
391
- std::cout << methodName << "\n";
392
391
  RouteBuilder::printRouteTree(this->m_httpRouteMaps[i].route_node, deepth);
393
392
  }
394
393
 
@@ -224,7 +224,6 @@ FlagBits scanHeaders(
224
224
  while (true) {
225
225
  if (__offset >= total && state != ST_HV_CONCAT)
226
226
  break;
227
- std::cout << state << "\n";
228
227
  switch (state) {
229
228
 
230
229
  // ================= STARTUP =================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "corecdtl",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "High-performance customizable HTTP engine",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",