@dbcube/core 1.0.62 → 1.0.64

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.cjs CHANGED
@@ -697,6 +697,7 @@ var Engine = class {
697
697
  };
698
698
  child.stdout.on("data", (data) => {
699
699
  stdoutBuffer += data.toString();
700
+ console.log(stdoutBuffer);
700
701
  const match = stdoutBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
701
702
  if (match) {
702
703
  try {
@@ -717,6 +718,7 @@ var Engine = class {
717
718
  });
718
719
  child.stderr.on("data", (data) => {
719
720
  stderrBuffer += data.toString();
721
+ console.log(stderrBuffer);
720
722
  const match = stderrBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
721
723
  if (match) {
722
724
  try {