From: Chris Duncan Date: Sun, 1 Dec 2024 07:17:29 +0000 (-0800) Subject: Remove more extraneous logging. X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=99cb4689ede0c796975ba17d91aff6f5556d0991;p=libnemo.git Remove more extraneous logging. --- diff --git a/src/lib/pool.ts b/src/lib/pool.ts index edb5b37..2b079cc 100644 --- a/src/lib/pool.ts +++ b/src/lib/pool.ts @@ -55,7 +55,6 @@ export class Pool { if (next.length > 0) { thread.isBusy = true const buf = new TextEncoder().encode(JSON.stringify(next)).buffer - console.log(`posting to thread (${performance.now()})`) thread.worker.postMessage(buf, [buf]) } } @@ -71,7 +70,6 @@ export class Pool { } async work (data: object[]): Promise { - console.log(`pool.work (${performance.now()})`) if (!Array.isArray(data)) data = [data] return new Promise(resolve => { this.#queue = data