Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 795f435

Browse files
committed
Remove debug messages
1 parent 2e19626 commit 795f435

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lib/db-manager.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ class DBManager {
44

55
let find_db = (dbn) => {
66
let result
7-
console.log(`Serching for ${dbn} in DBs`)
87
if (dbn in _dbs) return _dbs[dbn]
98
for (let db of Object.values(_dbs)) {
109
if (dbn == db.id) {
@@ -16,7 +15,6 @@ class DBManager {
1615
}
1716
};
1817
if (result) return result
19-
console.log(`DB ${dbn} not found`)
2018
};
2119

2220
this.get = async (dbn, params) => {

0 commit comments

Comments
 (0)