From c75576ebc7548d6a09f994a8914fbb214e4c8843 Mon Sep 17 00:00:00 2001 From: "govert@muze.nl" Date: Tue, 24 Sep 2024 14:49:08 +0200 Subject: [PATCH] added server debug information to double check the amount of workers --- src/server.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server.mjs b/src/server.mjs index 0515815..f654d35 100644 --- a/src/server.mjs +++ b/src/server.mjs @@ -33,6 +33,9 @@ async function main(options) { server.use(express.static(wwwroot)) + console.log("Debug information:") + console.log("maxworkers: ", maxWorkers) + // allow access to raw body, used to parse a query send as post body server.use(express.raw({ type: (req) => true, // parse body on all requests