diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-08-18 23:06:27 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-08-18 23:06:27 +0200 |
commit | d4021a9d17c23a897850be275397cdfc71ee4523 (patch) | |
tree | 268c05d4438c52cddfa4af770eb0f97914a55315 /src/crypto/cryptoApi.ts | |
parent | 23e72ce25cb5f7eede60281b499f527554db2185 (diff) |
slightly more sane logging
Diffstat (limited to 'src/crypto/cryptoApi.ts')
-rw-r--r-- | src/crypto/cryptoApi.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/crypto/cryptoApi.ts b/src/crypto/cryptoApi.ts index a4e12c00f..46fe2576e 100644 --- a/src/crypto/cryptoApi.ts +++ b/src/crypto/cryptoApi.ts @@ -140,7 +140,7 @@ export class CryptoApi { */ private stopped: boolean = false; - public enableTracing = true; + static enableTracing = false; /** * Terminate all worker threads. @@ -148,7 +148,7 @@ export class CryptoApi { terminateWorkers() { for (let worker of this.workers) { if (worker.w) { - this.enableTracing && console.log("terminating worker"); + CryptoApi.enableTracing && console.log("terminating worker"); worker.w.terminate(); if (worker.terminationTimerHandle) { worker.terminationTimerHandle.clear(); @@ -173,7 +173,7 @@ export class CryptoApi { */ wake(ws: WorkerState, work: WorkItem): void { if (this.stopped) { - this.enableTracing && console.log("not waking, as cryptoApi is stopped"); + CryptoApi.enableTracing && console.log("not waking, as cryptoApi is stopped"); return; } if (ws.currentWorkItem !== null) { @@ -268,7 +268,7 @@ export class CryptoApi { return; } - this.enableTracing && + CryptoApi.enableTracing && console.log( `rpc ${currentWorkItem.operation} took ${timer.performanceNow() - currentWorkItem.startTime}ms`, @@ -299,7 +299,7 @@ export class CryptoApi { priority: number, ...args: any[] ): Promise<T> { - this.enableTracing && console.log("cryptoApi: doRpc called"); + CryptoApi.enableTracing && console.log("cryptoApi: doRpc called"); const p: Promise<T> = new Promise<T>((resolve, reject) => { const rpcId = this.nextRpcId++; const workItem: WorkItem = { |