SPRING/스프링부트

[ log4j ] log4j-slf4j-impl cannot be present with log4j-to-slf4j 오류

추억을 백앤드하자 2022. 3. 25. 10:43
728x90
반응형
SMALL

문제

 

해결

확인해보니 spring boot 모듈 중에 logging dependency가 있어 대체되지 않았다

해서 build.gradle에 logging을 제외시키도록 아래의 configuration을 추가하였다

configurations {
    compile.exclude module: 'spring-boot-starter-logging'
 }
728x90
반응형
LIST