From 910802bbef15409addcbc2d89a499c5a4c88912a Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 20 Nov 2024 21:44:56 -0800 Subject: [PATCH] Remove pool logging. --- src/lib/pool.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/pool.ts b/src/lib/pool.ts index 9651205..b153485 100644 --- a/src/lib/pool.ts +++ b/src/lib/pool.ts @@ -55,9 +55,6 @@ export class Pool { #report (thread: Thread, result: any) { this.#results.push(result) - if (this.#results.length % 1000 === 0) { - console.log(`pool results: ${this.#results.length}`) - } thread.isBusy = false if (this.#queue.length > 0) { this.#assign(thread) -- 2.34.1