From 9e121b1e6acd56afaf8bfdc20662383878b169cc Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Wed, 1 Oct 2025 20:03:53 +0900 Subject: (김준회) 디버깅을 위해 프로덕션 모드에서도 로그 활성화 처리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/debug-utils.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/debug-utils.ts b/lib/debug-utils.ts index 88b5f9fc..d15958f0 100644 --- a/lib/debug-utils.ts +++ b/lib/debug-utils.ts @@ -1,6 +1,8 @@ // 개발 환경 디버그 유틸리티 -const isDev = process.env.NODE_ENV === 'development'; +// const isDev = process.env.NODE_ENV === 'development'; +// 테스트기간동안 로그 수집을 위해 true로 변경 +const isDev = true; const isDebugEnabled = process.env.NEXT_PUBLIC_DEBUG === 'true' || isDev; /** -- cgit v1.2.3