From: Chris Duncan Date: Thu, 21 Nov 2024 05:44:56 +0000 (-0800) Subject: Remove pool logging. X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=910802bbef15409addcbc2d89a499c5a4c88912a;p=libnemo.git Remove pool logging. --- 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)