From f9cca8e2cb63cb9604695225aa11dfdc89877a00 Mon Sep 17 00:00:00 2001 From: sriramveeraghanta Date: Wed, 15 Oct 2025 16:18:42 +0530 Subject: [PATCH] fix: live server log --- apps/live/src/env.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/live/src/env.ts b/apps/live/src/env.ts index 062ab578f..3c1a91ec9 100644 --- a/apps/live/src/env.ts +++ b/apps/live/src/env.ts @@ -1,6 +1,5 @@ import * as dotenv from "@dotenvx/dotenvx"; import { z } from "zod"; -import { logger } from "@plane/logger"; dotenv.config(); @@ -28,7 +27,7 @@ const envSchema = z.object({ const validateEnv = () => { const result = envSchema.safeParse(process.env); if (!result.success) { - logger.error("❌ Invalid environment variables:", JSON.stringify(result.error.format(), null, 4)); + console.error("❌ Invalid environment variables:", JSON.stringify(result.error.format(), null, 4)); process.exit(1); } return result.data;