Log headers

This commit is contained in:
Jackson Harper
2023-01-11 19:46:12 +08:00
parent 50e1dbda5a
commit 154109bb9d

View File

@ -207,7 +207,7 @@ export const gcsEventHandler: EventFunction = async (event, context) => {
export const importHandler = Sentry.GCPFunction.wrapHttpFunction(
async (req, res) => {
console.log('received: ', req.body)
console.log('received: ', req.body, req.headers)
res.send('ok')
}
)