]> zoso.dev Git - libnemo.git/commitdiff
Remove pool logging.
authorChris Duncan <chris@zoso.dev>
Thu, 21 Nov 2024 05:44:56 +0000 (21:44 -0800)
committerChris Duncan <chris@zoso.dev>
Thu, 21 Nov 2024 05:44:56 +0000 (21:44 -0800)
src/lib/pool.ts

index 9651205b000fb8852f1449b770b34286aab0d406..b153485639335e1c445bb26bcc428c015d85f12c 100644 (file)
@@ -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)