@dbcube/core 1.0.49 → 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
@@ -613,7 +613,6 @@ var Engine = class {
613
613
  setArguments() {
614
614
  let args = [];
615
615
  if (this.config.type == "sqlite") {
616
- console.log(this.config.config.DATABASE);
617
616
  args = [
618
617
  "--id",
619
618
  "dbcube-" + this.name,
@@ -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 {