@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 +0 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +0 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -628,7 +628,6 @@ var Engine = class {
|
|
|
628
628
|
}
|
|
629
629
|
async run(binary, args) {
|
|
630
630
|
await this.initializeBinary();
|
|
631
|
-
console.log(this.binary);
|
|
632
631
|
if (!this.binary) {
|
|
633
632
|
throw new Error("Binary not initialized");
|
|
634
633
|
}
|
|
@@ -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 {
|