From 99cb4689ede0c796975ba17d91aff6f5556d0991 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sat, 30 Nov 2024 23:17:29 -0800 Subject: [PATCH] Remove more extraneous logging. --- src/lib/pool.ts | 2 -- 1 file changed, 2 deletions(-) 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 -- 2.34.1