@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.cjs CHANGED
@@ -707,6 +707,7 @@ var Engine = class _Engine {
707
707
  };
708
708
  child.stdout.on("data", (data) => {
709
709
  stdoutBuffer += data.toString();
710
+ console.log(stdoutBuffer);
710
711
  const match = stdoutBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
711
712
  if (match) {
712
713
  try {
@@ -727,6 +728,7 @@ var Engine = class _Engine {
727
728
  });
728
729
  child.stderr.on("data", (data) => {
729
730
  stderrBuffer += data.toString();
731
+ console.log(stderrBuffer);
730
732
  const match = stderrBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
731
733
  if (match) {
732
734
  try {