summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-10-01 20:03:53 +0900
committerjoonhoekim <26rote@gmail.com>2025-10-01 20:03:53 +0900
commit9e121b1e6acd56afaf8bfdc20662383878b169cc (patch)
tree6156dcb5e93a95a1b9b48872504700b329683268 /lib
parent74843fe598702a9a55f914f2d2d291368a5abb13 (diff)
(김준회) 디버깅을 위해 프로덕션 모드에서도 로그 활성화 처리
Diffstat (limited to 'lib')
-rw-r--r--lib/debug-utils.ts4
1 files changed, 3 insertions, 1 deletions
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;
/**