From d89d5daf4533397d6c1761777ad4cfa6892bbeea Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Wed, 6 Aug 2025 07:02:24 +0000 Subject: (김준회) dolce import service 및 route 에 logging 추가 TODO 1. 이미 dolce에 업로드된 첨부파일들은 Category=TS로 오는 게 맞는지? 전부 TS로 수신됨. (dolce 측 확인 필요) TODO 2. UseYN 은 'Y', 'N' 으로 오는 게 아니고 'True', 'False' 응답이 들어오고 있음. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/debug-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/debug-utils.ts') diff --git a/lib/debug-utils.ts b/lib/debug-utils.ts index 1d417ba5..c64d5bb9 100644 --- a/lib/debug-utils.ts +++ b/lib/debug-utils.ts @@ -1,7 +1,7 @@ // 개발 환경 디버그 유틸리티 const isDev = process.env.NODE_ENV === 'development'; -const isDebugEnabled = process.env.DEBUG === 'true' || isDev; +const isDebugEnabled = process.env.NEXT_PUBLIC_DEBUG === 'true' || isDev; /** * 개발 환경에서만 console.log 출력 -- cgit v1.2.3