From da23e04564efaef4afff642d95f66f8bc4d42118 Mon Sep 17 00:00:00 2001 From: shinya Date: Fri, 18 Jul 2025 00:28:08 +0800 Subject: [PATCH] fix: add log --- src/app/api/playrecords/route.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/api/playrecords/route.ts b/src/app/api/playrecords/route.ts index 3705bbb..cb50503 100644 --- a/src/app/api/playrecords/route.ts +++ b/src/app/api/playrecords/route.ts @@ -36,6 +36,8 @@ export async function POST(request: NextRequest) { } const body = await request.json(); + console.log('username', authInfo.username); + console.log('body', body); const { key, record }: { key: string; record: PlayRecord } = body; if (!key || !record) {