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