@dbcube/core 1.0.62 → 1.0.63

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