remove more logging

This commit is contained in:
Florian Dold 2016-09-28 18:04:59 +02:00
parent 79d32c9c1b
commit c5dc5fd935
2 changed files with 0 additions and 4 deletions

View File

@ -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) {

View File

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