From 2f8801bae6202c541c7542c42bb1e050d1bb46cf Mon Sep 17 00:00:00 2001 From: Matt Low Date: Thu, 25 Feb 2021 00:37:54 -0700 Subject: [PATCH] Worker threads message --- src/sudoku/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sudoku/index.ts b/src/sudoku/index.ts index bbd32fa..d186e2b 100644 --- a/src/sudoku/index.ts +++ b/src/sudoku/index.ts @@ -27,6 +27,7 @@ function getWorker() { const available: any = []; function initialize() { + console.log(`Starting ${WORKERS} worker threads`); for (let n = 0; n < WORKERS; n++) { getWorker().then((worker) => available.push(worker)); }