Skip to content

Commit 8673df9

Browse files
committed
Remove debug log lines
1 parent 99d2d9f commit 8673df9

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

store.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,9 @@ class Store {
155155
const result = f()
156156
if (ownTxn) {
157157
if (readonly) {
158-
console.log('aborting txn')
159158
this.txn.abort()
160159
}
161160
else {
162-
console.log('committing txn')
163161
this.txn.commit()
164162
}
165163
}
@@ -185,11 +183,9 @@ class Store {
185183
const result = await f()
186184
if (ownTxn) {
187185
if (readonly) {
188-
console.log('aborting txn')
189186
this.txn.abort()
190187
}
191188
else {
192-
console.log('committing txn')
193189
this.txn.commit()
194190
}
195191
}
@@ -254,4 +250,4 @@ class Store {
254250
}
255251
}
256252

257-
module.exports = { Store, asBinary }
253+
module.exports = { Store, asBinary }

0 commit comments

Comments
 (0)