remove bad logging

This commit is contained in:
Florian Dold 2016-09-28 18:03:01 +02:00
parent fab098c8e7
commit 79d32c9c1b
3 changed files with 1 additions and 7 deletions

View File

@ -54,7 +54,6 @@ export function main(worker: Worker) {
} }
} }
console.log("hello, this is the crypto lib");
namespace RpcFunctions { namespace RpcFunctions {

View File

@ -54,12 +54,8 @@ if ("object" !== typeof Module) {
System.import("./cryptoLib") System.import("./cryptoLib")
.then((m) => { .then((m) => {
m.main(self); m.main(self);
console.log("loaded");
}) })
.catch((e) => { .catch((e) => {
console.log("crypto worker failed"); console.log("crypto worker failed");
console.error(e.stack); console.error(e.stack);
}); });
console.log("in worker thread");

View File

@ -955,7 +955,6 @@ export class Wallet {
let r = await Query(this.db).get("exchanges", baseUrl); let r = await Query(this.db).get("exchanges", baseUrl);
let exchangeInfo: IExchangeInfo; let exchangeInfo: IExchangeInfo;
console.dir(r);
if (!r) { if (!r) {
exchangeInfo = { exchangeInfo = {