diff options
| author | joonhoekim <26rote@gmail.com> | 2025-10-01 20:03:53 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-10-01 20:03:53 +0900 |
| commit | 9e121b1e6acd56afaf8bfdc20662383878b169cc (patch) | |
| tree | 6156dcb5e93a95a1b9b48872504700b329683268 /lib/debug-utils.ts | |
| parent | 74843fe598702a9a55f914f2d2d291368a5abb13 (diff) | |
(김준회) 디버깅을 위해 프로덕션 모드에서도 로그 활성화 처리
Diffstat (limited to 'lib/debug-utils.ts')
| -rw-r--r-- | lib/debug-utils.ts | 4 |
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; /** |
