From 94d29f0174e1dcf24cda4ce6a1dbc22713761660 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 29 Mar 2024 10:05:24 -0700 Subject: [PATCH] chore: debug --- api/scrobble.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/scrobble.js b/api/scrobble.js index 7b7b1afe..db7212e8 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -7,8 +7,10 @@ export default async (request, context) => { const data = await request.formData() const payload = data['payload'] + console.log(payload) + const debug = getStore('debug') - await debug.setJSON('debug', payload) + await debug.setJSON('debug', JSON.stringify(payload)) if (!id) return new Response(JSON.stringify({ status: 'Bad request',