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
다음과 같이 슬랙에 WARN 로그에 대한 알림이 오고 있습니다.
WARN
해당 알림은 GloblaExceptionHandler에서 잡힌 예외로 인해 발생하는 로그가 아닌, 스프링 프레임워크 내의 로그에서 발생하는 알림입니다.
GloblaExceptionHandler
protected boolean isInvalidPath(String path) { if (path.contains("WEB-INF") || path.contains("META-INF")) { if (logger.isWarnEnabled()) { logger.warn(LogFormatUtils.formatValue( "Path with \"WEB-INF\" or \"META-INF\": [" + path + "]", -1, true)); } return true; } if (path.contains(":/")) { String relativePath = (path.charAt(0) == '/' ? path.substring(1) : path); if (ResourceUtils.isUrl(relativePath) || relativePath.startsWith("url:")) { if (logger.isWarnEnabled()) { logger.warn(LogFormatUtils.formatValue( "Path represents URL or has \"url:\" prefix: [" + path + "]", -1, true)); } return true; } } if (path.contains("..") && StringUtils.cleanPath(path).contains("../")) { if (logger.isWarnEnabled()) { logger.warn(LogFormatUtils.formatValue( "Path contains \"../\" after call to StringUtils#cleanPath: [" + path + "]", -1, true)); } return true; } return false; }
해당 알림으로 인해 중요한 알림을 놓칠 수 있고, 슬랙으로 보낼 필요가 없는 알림이기 때문에 해당 알림을 제외합니다.
10분
The text was updated successfully, but these errors were encountered:
seokjin8678
Successfully merging a pull request may close this issue.
✨ 세부 내용
다음과 같이 슬랙에
WARN
로그에 대한 알림이 오고 있습니다.해당 알림은
GloblaExceptionHandler
에서 잡힌 예외로 인해 발생하는 로그가 아닌, 스프링 프레임워크 내의 로그에서 발생하는 알림입니다.해당 알림으로 인해 중요한 알림을 놓칠 수 있고, 슬랙으로 보낼 필요가 없는 알림이기 때문에 해당 알림을 제외합니다.
⏰ 예상 소요 시간
10분
The text was updated successfully, but these errors were encountered: