@dbcube/core 1.0.58 → 1.0.59

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
@@ -663,6 +663,7 @@ var Engine = class _Engine {
663
663
  };
664
664
  child.stdout.on("data", (data) => {
665
665
  stdoutBuffer += data.toString();
666
+ console.log(stdoutBuffer);
666
667
  const match = stdoutBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
667
668
  if (match) {
668
669
  try {
@@ -683,6 +684,7 @@ var Engine = class _Engine {
683
684
  });
684
685
  child.stderr.on("data", (data) => {
685
686
  stderrBuffer += data.toString();
687
+ console.log(stderrBuffer);
686
688
  const match = stderrBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
687
689
  if (match) {
688
690
  try {