@dbcube/core 1.0.63 → 1.0.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -653,7 +653,6 @@ var Engine = class {
653
653
  };
654
654
  child.stdout.on("data", (data) => {
655
655
  stdoutBuffer += data.toString();
656
- console.log(stdoutBuffer);
657
656
  const match = stdoutBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
658
657
  if (match) {
659
658
  try {
@@ -674,7 +673,6 @@ var Engine = class {
674
673
  });
675
674
  child.stderr.on("data", (data) => {
676
675
  stderrBuffer += data.toString();
677
- console.log(stderrBuffer);
678
676
  const match = stderrBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
679
677
  if (match) {
680
678
  try {