@dbcube/core 1.0.51 → 1.0.52

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