feat: add fastify hybrid pools example
[poolifier.git] / examples / typescript / http-server-pool / fastify-worker_threads / src / main.ts
index 7db0b5196d973b98b51e6ac37dea5d12af9bbbf1..cc647a0fd2a707916999b6521096e298f872837d 100644 (file)
@@ -24,7 +24,7 @@ await fastify.register(fastifyPoolifier, {
     concurrency: 8
   },
   errorHandler: (e: Error) => {
-    fastify.log.error(e)
+    fastify.log.error('Thread worker error:', e)
   }
 })