diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-09-28 18:04:59 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-09-28 18:04:59 +0200 |
commit | c5dc5fd9357419472c1d182f9cdfe3382ebc1687 (patch) | |
tree | 3b856b021febac26bdf837b83d3da545cae30647 | |
parent | 79d32c9c1b57824f27fd63db1ec4be56186562ee (diff) |
remove more logging
-rw-r--r-- | lib/wallet/cryptoApi.ts | 3 | ||||
-rw-r--r-- | lib/wallet/cryptoLib.ts | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/lib/wallet/cryptoApi.ts b/lib/wallet/cryptoApi.ts index 4b4a2e5dd..585aa39e7 100644 --- a/lib/wallet/cryptoApi.ts +++ b/lib/wallet/cryptoApi.ts @@ -150,9 +150,6 @@ export class CryptoApi { }); } - console.log(`${this.numBusy} of ${this.workers.length} workers are busy`); - console.log(this.workers); - for (let i = 0; i < this.workers.length; i++) { let ws = this.workers[i]; if (ws.busy) { diff --git a/lib/wallet/cryptoLib.ts b/lib/wallet/cryptoLib.ts index b74e82bd7..58a3d5004 100644 --- a/lib/wallet/cryptoLib.ts +++ b/lib/wallet/cryptoLib.ts @@ -33,7 +33,6 @@ import {Amount} from "./emscriptif"; export function main(worker: Worker) { worker.onmessage = (msg: MessageEvent) => { - console.log("got data", msg.data); if (!Array.isArray(msg.data.args)) { console.error("args must be array"); return; |