diff --git a/packages/import-handler/src/index.ts b/packages/import-handler/src/index.ts index 778c0f705..f7053fd78 100644 --- a/packages/import-handler/src/index.ts +++ b/packages/import-handler/src/index.ts @@ -207,6 +207,7 @@ export const gcsEventHandler: EventFunction = async (event, context) => { export const importHandler = Sentry.GCPFunction.wrapHttpFunction( async (req, res) => { + console.log('received: ', req.body) res.send('ok') } )