X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=examples%2FfixedExample.js;h=478c37eb056229360dbdbabcf61ab13e7f058e74;hb=77492f2e943e5ca2922e36c345816168298e8090;hp=3f103ca5523f85441fc864172f24f7f142cca477;hpb=15e5141f463661f3dd0f17e8a9402703fddd4050;p=poolifier.git diff --git a/examples/fixedExample.js b/examples/fixedExample.js index 3f103ca5..478c37eb 100644 --- a/examples/fixedExample.js +++ b/examples/fixedExample.js @@ -3,7 +3,7 @@ let resolved = 0 let poolBusy = 0 const pool = new FixedThreadPool(15, './yourWorker.js', { errorHandler: e => console.error(e), - onlineHandler: () => console.log('worker is online') + onlineHandler: () => console.info('worker is online') }) pool.emitter.on(PoolEvents.busy, () => poolBusy++) @@ -15,8 +15,8 @@ for (let i = 1; i <= iterations; i++) { .then(() => { resolved++ if (resolved === iterations) { - console.log('Time taken is ' + (performance.now() - start)) - return console.log('The pool was busy for ' + poolBusy + ' times') + console.info('Time taken is ' + (performance.now() - start)) + return console.info('The pool was busy for ' + poolBusy + ' times') } return null })