728x90
SLF4J: No SLF4J providers were found.
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details.
SLF4J: Class path contains SLF4J bindings targeting slf4j-api versions prior to 1.8.
SLF4J: Ignoring binding found at [jar:file:/D:/-/repository/ch/qos/logback/logback-classic/1.2.6/logback-classic-1.2.6.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#ignoredBindings for an explanation.
위 에러는 SLF4J 바인딩 버전이 맞지 않아 생기는 에러.
서비스 로그가 전혀 나오지 않는다.
pom.xml
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
maven에서 slf4j 버전을 2.0.0 -> 1.7.9 로 변경후 실행하면 에러가 잘 나온다.
728x90
'기타' 카테고리의 다른 글
바밀로 VARMILO키보드의 FN키 안먹는 경우/ 바밀로 키보드 초기화 (VA108Mac) (0) | 2023.03.03 |
---|---|
[sh / crontab / cron] 일정 주기마다 빈 디렉터리 삭제 (0) | 2022.10.03 |