Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- UnsupportedOperationException
- fake jwt
- jsonMarshaller
- Loki 로그
- Armeria
- save/update
- R2DBC Paging
- OIDC
- 개발 어렵당.ㅠ
- 7879
- 노드간 통신
- RedirectService
- pinpoint
- reids
- 았
- 월급루팡 일지
- LPOS
- 플루터
- nGinder
- 핀포인트
- 오블완
- Ingress Controller Fake
- ㅉ때
- formik
- pinpoint 2.5.3
- hbase 저장공간 설정
- 논블록킹 성능
- 티스토리챌린지
- intellij
- 애자일 싫타
Archives
- Today
- Total
대머리개발자
SLF4J: Class path contains multiple SLF4J bindings. 본문
728x90
단순 WARN 이다. 하지만 난 신경이 쓰인다.
여러개가 바인딩되었는데 실제적으로 org.apache.logging.slf4j.Log4jLoggerFactory 되었다.
이미 부트에서 제공되는 로깅 친구를 제외하고 있었는데 추가적으로 implementation 하니깐 발생하였다.
추가된 dependencies에서 로깅을 제외 시키면 된다.
configurations {
all {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
}
configurations {
all {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
exclude group: 'com.am10', module: 'log'
}
}
워닝 없이 깔끔하게 기동된다. ㅎㅎ 나이쑤!
728x90
'개발이야기' 카테고리의 다른 글
Vue - 다시 한번 (0) | 2023.10.20 |
---|---|
스프링 부트 war 배포 (0) | 2021.07.07 |
No subdirectories found for mandatory directory location 'file:./config/*/' (1) | 2021.06.25 |
gradle 설치 및 pom 변환 (0) | 2021.06.24 |