Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ExceptionHandler의 로깅을 디버그일 때 출력하고, 각 컴포넌트에서 로깅하도록 변경한다. #62

Closed
seokjin8678 opened this issue Dec 30, 2023 · 0 comments · Fixed by #63
Assignees
Labels
🛠 수정 수정에 관한 작업

Comments

@seokjin8678
Copy link
Contributor

이슈 내용

지금 코드의 경우, 요청에서 예외가 발생할 때 마다 로깅을 하고 있습니다.

@ExceptionHandler(GalaxyhubException::class)
fun handleGalaxyhubException(
    e: GalaxyhubException,
    request: HttpServletRequest,
): ResponseEntity<ApiResponse<Unit>> {
    when (e.logLevel) {
        LogLevel.ERROR -> log.error(e) { "[🔴ERROR] - (${request.method} ${request.requestURI})" }
        LogLevel.WARN -> log.warn(e) { "[🟠WARN] - (${request.method} ${request.requestURI})" }
        LogLevel.INFO -> log.info(e) { "[🔵INFO] - (${request.method} ${request.requestURI})" }
        LogLevel.DEBUG -> log.debug(e) { "[🟢DEBUG] - (${request.method} ${request.requestURI})" }
    }
    return ResponseEntity(ApiResponse.error(e.message!!), e.httpStatus)
}

이때 불필요하게 로그가 쌓일 수 있기 때문에 중요한 로그가 무시될 가능성이 있습니다.
로그 때문에 발생하는 부하도 덤이구요.

따라서 필요한 로그만 직접 컴포넌트에서 남기는 방식으로 변경하여 문제의 발생 가능성을 줄이도록 합니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🛠 수정 수정에 관한 작업
Projects
None yet
1 participant