fix: add log

This commit is contained in:
shinya
2025-07-18 00:28:08 +08:00
parent 286beba206
commit da23e04564

View File

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