X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FdynamicExample.js;fp=examples%2FdynamicExample.js;h=59d992a67e202387d2b3dec6e6b6538e326a9985;hb=53795b86368cc6c3ec0648706fa385bdb6ca316d;hp=1b7391d759b01c7d6a41dbc0a953bfc33e5f2c8b;hpb=8351c9af7882ec098ee29aaa7982f5d030cf0034;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index 1b7391d7..59d992a6 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -4,7 +4,7 @@ let poolFull = 0 let poolBusy = 0 const pool = new DynamicThreadPool(10, 20, './yourWorker.js', { errorHandler: e => console.error(e), - onlineHandler: () => console.log('worker is online') + onlineHandler: () => console.info('worker is online') }) pool.emitter.on(PoolEvents.full, () => poolFull++) pool.emitter.on(PoolEvents.busy, () => poolBusy++) @@ -17,9 +17,9 @@ for (let i = 1; i <= iterations; i++) { .then(() => { resolved++ if (resolved === iterations) { - console.log('Time taken is ' + (performance.now() - start)) - console.log('The pool was full for ' + poolFull + ' times') - return console.log('The pool was busy for ' + poolBusy + ' times') + console.info('Time taken is ' + (performance.now() - start)) + console.info('The pool was full for ' + poolFull + ' times') + return console.info('The pool was busy for ' + poolBusy + ' times') } return null })