We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
지금 코드의 경우, 요청에서 예외가 발생할 때 마다 로깅을 하고 있습니다.
@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) }
이때 불필요하게 로그가 쌓일 수 있기 때문에 중요한 로그가 무시될 가능성이 있습니다. 로그 때문에 발생하는 부하도 덤이구요.
따라서 필요한 로그만 직접 컴포넌트에서 남기는 방식으로 변경하여 문제의 발생 가능성을 줄이도록 합니다.
The text was updated successfully, but these errors were encountered:
feat: ExceptionHandler 로깅 디버그일 때 출력, 각 컴포넌트에서 로깅하도록 변경 (#62) (#63)
d5d8c1a
seokjin8678
Successfully merging a pull request may close this issue.
이슈 내용
지금 코드의 경우, 요청에서 예외가 발생할 때 마다 로깅을 하고 있습니다.
이때 불필요하게 로그가 쌓일 수 있기 때문에 중요한 로그가 무시될 가능성이 있습니다.
로그 때문에 발생하는 부하도 덤이구요.
따라서 필요한 로그만 직접 컴포넌트에서 남기는 방식으로 변경하여 문제의 발생 가능성을 줄이도록 합니다.
The text was updated successfully, but these errors were encountered: