taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit c5dc5fd9357419472c1d182f9cdfe3382ebc1687
parent 79d32c9c1b57824f27fd63db1ec4be56186562ee
Author: Florian Dold <florian.dold@gmail.com>
Date:   Wed, 28 Sep 2016 18:04:59 +0200

remove more logging

Diffstat:
Mlib/wallet/cryptoApi.ts | 3---
Mlib/wallet/cryptoLib.ts | 1-
2 files changed, 0 insertions(+), 4 deletions(-)

diff --git 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 @@ -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;