diff --git a/server/src/controllers/games.controller.ts b/server/src/controllers/games.controller.ts index 3c57013..8e10a7f 100644 --- a/server/src/controllers/games.controller.ts +++ b/server/src/controllers/games.controller.ts @@ -35,8 +35,7 @@ export const getActiveGame = async (req: Request, res: Response) => { export const createGame = async (req: Request, res: Response) => { try { if (!req.session.user) { - console.log("unauthorized createGame:"); - console.log(req.session); + console.log("unauthorized createGame"); res.status(401).end(); return; }