From c5dc5fd9357419472c1d182f9cdfe3382ebc1687 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 28 Sep 2016 18:04:59 +0200 Subject: [PATCH] remove more logging --- lib/wallet/cryptoApi.ts | 3 --- lib/wallet/cryptoLib.ts | 1 - 2 files changed, 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;