diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-11-19 21:24:39 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-11-19 21:24:39 +0100 |
commit | 4f7a130ebc2da6767e9db161ddf04b243dc2d0e3 (patch) | |
tree | 926dbf7d1df12f2bd3f30eb62ff21c2848fa483e | |
parent | 1357271717109f90ae510e3cc2d1ecaa94e55336 (diff) |
remove debug log
-rw-r--r-- | manifest.json | 4 | ||||
-rw-r--r-- | src/query.ts | 2 | ||||
-rw-r--r-- | tsconfig.json | 4 |
3 files changed, 4 insertions, 6 deletions
diff --git a/manifest.json b/manifest.json index d685b7e4b..8e21d8208 100644 --- a/manifest.json +++ b/manifest.json @@ -4,8 +4,8 @@ "name": "GNU Taler Wallet (git)", "description": "Privacy preserving and transparent payments", "author": "GNU Taler Developers", - "version": "0.6.31", - "version_name": "0.1.7", + "version": "0.6.32", + "version_name": "0.1.8", "minimum_chrome_version": "49", "minimum_opera_version": "36", diff --git a/src/query.ts b/src/query.ts index 2c5a6002f..30633b0af 100644 --- a/src/query.ts +++ b/src/query.ts @@ -316,7 +316,6 @@ class QueryStreamIndexJoinLeft<T, S> extends QueryStreamBase<JoinLeftResult<T, S f(true, undefined, tx); return; } - console.log("joining on", this.key(value)); const s = tx.objectStore(this.storeName).index(this.indexName); const req = s.openCursor(IDBKeyRange.only(this.key(value))); let gotMatch = false; @@ -356,7 +355,6 @@ class QueryStreamKeyJoin<T, S> extends QueryStreamBase<JoinResult<T, S>> { f(true, undefined, tx); return; } - console.log("joining on", this.key(value)); let s = tx.objectStore(this.storeName); let req = s.openCursor(IDBKeyRange.only(this.key(value))); req.onsuccess = () => { diff --git a/tsconfig.json b/tsconfig.json index d00d1c2b1..cbd1d173f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -45,12 +45,12 @@ "src/background/background.ts", "src/content_scripts/notify.ts", "src/emscripten/taler-emscripten-lib.d.ts", + "src/popup/popup.tsx", "src/pages/show-db.ts", "src/pages/confirm-contract.tsx", "src/pages/confirm-create-reserve.tsx", "src/pages/error.tsx", "src/pages/logs.tsx", - "src/pages/tree.tsx", - "src/popup/popup.tsx" + "src/pages/tree.tsx" ] }
\ No newline at end of file |