diff --git a/index.js b/index.js index 5fba73e..121a97a 100644 --- a/index.js +++ b/index.js @@ -57,7 +57,10 @@ app.post('/', async (req, res) => { return res.sendStatus(200) // hcaptcha failed - } else return res.sendStatus(403) + } else { + console.log(`Failed hCaptcha with data: ${data}`) + return res.sendStatus(403) + } }) app.listen(PORT, () => {