From 874f1c2fd71da2b270eb04300e644bd597c0b71f Mon Sep 17 00:00:00 2001 From: ntki72 Date: Fri, 3 Jan 2025 23:24:48 +0900 Subject: [PATCH] =?UTF-8?q?=E7=92=B0=E5=A2=83=E5=A4=89=E6=95=B0=E3=81=8C?= =?UTF-8?q?=E6=9C=AA=E5=AE=9A=E7=BE=A9=E3=81=AE=E5=A0=B4=E5=90=88=E3=81=AE?= =?UTF-8?q?=E3=82=A8=E3=83=A9=E3=83=BC=E3=83=A1=E3=83=83=E3=82=BB=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E3=82=92=E3=82=B3=E3=83=B3=E3=82=BD=E3=83=BC=E3=83=AB?= =?UTF-8?q?=E5=87=BA=E5=8A=9B=E3=81=8B=E3=82=89=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/env.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/config/env.ts b/src/config/env.ts index df9cd55..2f5e8f1 100644 --- a/src/config/env.ts +++ b/src/config/env.ts @@ -20,7 +20,6 @@ const requiredEnvVars = [ requiredEnvVars.forEach((varName) => { if (!process.env[varName]) { - console.error(`Environment variable ${varName} is required but not defined.`); throw new Error(`Environment variable ${varName} is required but not defined.`); } });