Improved logging

master
Keith Irwin 2021-12-26 15:55:48 -07:00
parent 260f65884b
commit d96372ca11
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ app.post('/', async (req, res) => {
// hcaptcha failed
} else {
console.log(`Failed hCaptcha with data: ${data}`)
console.log(`Failed hCaptcha with data: ${JSON.stringify(data)}`)
return res.sendStatus(403)
}
})