728x90
반응형
SMALL
문제
해결
확인해보니 spring boot 모듈 중에 logging dependency가 있어 대체되지 않았다
해서 build.gradle에 logging을 제외시키도록 아래의 configuration을 추가하였다
configurations {
compile.exclude module: 'spring-boot-starter-logging'
}
728x90
반응형
LIST