@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.js CHANGED
@@ -569,7 +569,6 @@ var Engine = class {
569
569
  setArguments() {
570
570
  let args = [];
571
571
  if (this.config.type == "sqlite") {
572
- console.log(this.config.config.DATABASE);
573
572
  args = [
574
573
  "--id",
575
574
  "dbcube-" + this.name,
@@ -653,7 +652,6 @@ var Engine = class {
653
652
  };
654
653
  child.stdout.on("data", (data) => {
655
654
  stdoutBuffer += data.toString();
656
- console.log(stdoutBuffer);
657
655
  const match = stdoutBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
658
656
  if (match) {
659
657
  try {
@@ -674,7 +672,6 @@ var Engine = class {
674
672
  });
675
673
  child.stderr.on("data", (data) => {
676
674
  stderrBuffer += data.toString();
677
- console.log(stderrBuffer);
678
675
  const match = stderrBuffer.match(/PROCESS_RESPONSE:(\{.*\})/);
679
676
  if (match) {
680
677
  try {