@dbcube/core 1.0.64 → 1.0.66

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