반응형
이전에 스프링부트에서 기본적으로 쌓이는 spring.log 파일의 위치를 변경하는 방법에 대해서 공유했었습니다.
2017/08/22 - [java] - spring boot logback 기본 spring.log 위치 변경하기.
이번에는 spring.log 파일이 쌓이지 않도록 하는 방법을 공유합니다.
사실 매우 간단합니다. logback.xml 에서 아래 include 요소를 제거하면 됩니다.
<include resource="org/springframework/boot/logging/logback/base.xml" /> |
하지만 이렇게 되면 기본 CONSOLE Appender를 사용할 수 없게 됩니다.
스프링에서 설정해준 CONSOLE Appender를 사용하려면 아래 두줄을 include 하면 됩니다.
<include resource="org/springframework/boot/logging/logback/defaults.xml" /> <include resource="org/springframework/boot/logging/logback/console-appender.xml" /> |
반응형
'java' 카테고리의 다른 글
pure java http client example (jdk 1.8) (0) | 2018.04.01 |
---|---|
java - spring boot filter 등록 (0) | 2018.03.23 |
org.apache.catalina.util.SessionIdGeneratorBase : Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [289,555] milliseconds. (0) | 2018.03.21 |
spring boot application.properties encryption/decryption 스프링부트 프라퍼티 암호화 복호화 (0) | 2018.03.12 |
java poi excel write 엑셀 쓰기 (0) | 2018.01.29 |
java 전화번호 형식 변환 (7) | 2018.01.23 |
spring security cache control (0) | 2018.01.16 |
spring boot cache (0) | 2018.01.16 |