feat: add initial continous benchmarking
[poolifier.git] / benchmarks / internal / cluster-worker.mjs
index 69a7ad15cae0ada671f3e4f8ef1261305d26e51a..1d64fde30a19d82f0e4f52cb1781a7eab9efeae6 100644 (file)
@@ -3,13 +3,12 @@ import { ClusterWorker } from '../../lib/index.mjs'
 import { executeTaskFunction } from '../benchmarks-utils.mjs'
 import { TaskFunctions } from '../benchmarks-types.mjs'
 
-const debug = false
-
 const taskFunction = data => {
   data = data || {}
   data.function = data.function || TaskFunctions.jsonIntegerSerialization
+  data.debug = data.debug || false
   const res = executeTaskFunction(data)
-  debug === true && console.debug(`This is the main thread ${isPrimary}`)
+  data.debug === true && console.debug(`This is the main thread ${isPrimary}`)
   return res
 }