From 1a6d840a4ab203e43a53426b28b7e9afd8a8dacb Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 2 Apr 2024 11:26:18 -0700 Subject: [PATCH] chore: debug --- api/debug.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/debug.js b/api/debug.js index ace5863a..d567985f 100644 --- a/api/debug.js +++ b/api/debug.js @@ -1,6 +1,10 @@ export default async (context, request) => { console.log(context) console.log(request) + const data = await request.formData() + console.log(data) + const payload = JSON.parse(data.get('payload')) + console.log(payload) return new Response(JSON.stringify({ status: 'success',