@dbcube/core 1.0.50 → 1.0.51

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
@@ -672,7 +672,6 @@ var Engine = class {
672
672
  }
673
673
  async run(binary, args) {
674
674
  await this.initializeBinary();
675
- console.log(this.binary);
676
675
  if (!this.binary) {
677
676
  throw new Error("Binary not initialized");
678
677
  }
@@ -697,7 +696,6 @@ var Engine = class {
697
696
  };
698
697
  child.stdout.on("data", (data) => {
699
698
  stdoutBuffer += data.toString();
700
- console.log(stdoutBuffer);
701
699
  const match = stdoutBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
702
700
  if (match) {
703
701
  try {
@@ -718,7 +716,6 @@ var Engine = class {
718
716
  });
719
717
  child.stderr.on("data", (data) => {
720
718
  stderrBuffer += data.toString();
721
- console.log(stderrBuffer);
722
719
  const match = stderrBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
723
720
  if (match) {
724
721
  try {