SpringBoot에서 Log설정하기.

SpringBoot에서 Log 설정하기. 

Spring Boot에서 로깅을 위해서는 spring-boot-starter-logging을 의존성에 추가하면 된다.
웹 어플리케이션을 사용한다면, spring-boot-starter-web만 사용하면 된다.

Maven 의존성 추가하기 :
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

application.properties 설정하기. 
logging.level.org.springframework.web=DEBUG
logging.level.org.hibernate=ERROR
미세한 설정을 위해서는 classpath:logback.xml을 설정할 수 있다. 





Share this

Related Posts

Previous
Next Post »