From dd1720addfe93131dbb01a80be6c27c82c780d70 Mon Sep 17 00:00:00 2001 From: Gerard Clos Date: Sat, 14 Sep 2024 11:46:48 +0200 Subject: [PATCH] remove env console log (it polutes the prod logs) --- apps/web/src/app/(public)/api/health/route.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/web/src/app/(public)/api/health/route.ts b/apps/web/src/app/(public)/api/health/route.ts index 22161d78e..0ea582b94 100644 --- a/apps/web/src/app/(public)/api/health/route.ts +++ b/apps/web/src/app/(public)/api/health/route.ts @@ -1,8 +1,5 @@ -import env from '$/env' +import _ from '$/env' export async function GET() { - // NOTE: This is so the health check fails if the env is not correctly loaded - console.log(env) - return Response.json({ status: 'ok' }) }