diff --git a/frontend/src/utils/errorLogger.js b/frontend/src/utils/errorLogger.js index 0c49c40..beeeb1b 100644 --- a/frontend/src/utils/errorLogger.js +++ b/frontend/src/utils/errorLogger.js @@ -7,14 +7,14 @@ import api from '../api'; class ErrorLogger { constructor() { - this.isEnabled = process.env.NODE_ENV === 'development' || process.env.REACT_APP_ERROR_LOGGING === 'true'; + this.isEnabled = false; // 긴급 비활성화 - 무한 루프 방지 this.maxRetries = 3; this.retryDelay = 1000; // 1초 this.errorQueue = []; this.isProcessing = false; // 전역 오류 핸들러 설정 - this.setupGlobalErrorHandlers(); + // this.setupGlobalErrorHandlers(); // 비활성화 } /**