Skip to content

Commit

Permalink
X
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Feb 13, 2024
1 parent eb8c1ed commit eedf2f0
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/server/utils/SessionDatabase.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const fs = require("fs").promises;
const sqlite3 = require("sqlite3");
const sqlite = require("sqlite");
const constants = require("./Constants");
const logger = require("./Logger");

const MODES = constants.MODES;
const DB_FILE_NAME = "explorer.db";
Expand Down Expand Up @@ -76,11 +75,6 @@ class SessionDatabase {
return;
}
}
setTimeout(() => {
logger.info(
`isDbFileExists: ${isDbFileExists}, this.isReadOnly: ${this.isReadOnly}`
);
}, 10000);
this.db = await sqlite.open({
filename: this.dbPath,
driver: sqlite3.Database,
Expand Down

0 comments on commit eedf2f0

Please sign in to comment.