From 6847c467914089941091fc67b0925f5cb0258c80 Mon Sep 17 00:00:00 2001 From: La_Felx <60652077+Flexla54@users.noreply.github.com> Date: Tue, 3 Jan 2023 22:31:49 +0100 Subject: [PATCH] removed debug logger --- src/Controllers/team.controller.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Controllers/team.controller.ts b/src/Controllers/team.controller.ts index 4b49936..7680cf5 100644 --- a/src/Controllers/team.controller.ts +++ b/src/Controllers/team.controller.ts @@ -49,8 +49,6 @@ export const getTeams = async (req: Request<{}, {}, {}, { showHidden?: string }> const show: boolean = req.query.showHidden === "true"; - logger.info(typeof show); - const teams = await prisma.team.findMany({ where: { verified: { equals: show ? undefined : true } }, select: basicTeam,