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) {