From 2a92663299b91186a3642d71488095f1bf84a797 Mon Sep 17 00:00:00 2001 From: not-nullptr Date: Tue, 19 Mar 2024 18:16:13 +0000 Subject: [PATCH] debug ting innit!!! --- src/routes/lobby/+server.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/lobby/+server.ts b/src/routes/lobby/+server.ts index dd223c5..f457498 100644 --- a/src/routes/lobby/+server.ts +++ b/src/routes/lobby/+server.ts @@ -44,6 +44,7 @@ export async function POST({ request, getClientAddress }) { const user = await useAuth(token); console.log(user); if (!user) return new Response(null, { status: 401 }); + console.log(body, getClientAddress()); const room = RoomManager.createRoom({ name: body.name, description: parsedDescription[0] || "",