logging:
level:
root: ERROR # 전역 로깅 레벨 설정
org.springframework: ERROR
org.springframework.web: ERROR
org.springframework.security: ERROR
com.app.feeling: ERROR
application.yml 파일을 위와 같이 수정했는데 서버가 안뜬다.
정확한 원인을 모르겠어서 하나씩 지워나면서 해봤는데
root: ERROR
요 부분이 문제 였다.
전역 설정이라 다른 부분과 충돌이 일어나는 거 같다.
logging:
level:
org.hibernate.SQL: ERROR
org.hibernate.type.descriptor.sql.BasicBinder: ERROR
org.springframework: ERROR
org.springframework.web: ERROR
org.springframework.security: ERROR
com.app.feeling: ERROR
이렇게 수정해서 해결