print errors when checking pid validity
Some checks failed
backend / docker (push) Failing after 19s

This commit is contained in:
kittentm 2026-05-31 17:12:57 +02:00
commit 37f7399edb

View file

@ -39,6 +39,7 @@ router.post('/post', postLimiter, async (request, response, next) => {
isPidValid = false;
}
} catch (err) {
console.error(`Caught error when validating ${pid}:`, err.message || err);
isPidValid = false;
}