Guest User

Untitled

a guest
Feb 22nd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <include resource="org/springframework/boot/logging/logback/defaults.xml" />
  4.  
  5. <property name="LOG_FILE"
  6. value="${LOG_FILE:-${LOG_PATH:-${LOG_TEMP:-${java.io.tmpdir:-/tmp}}/}spring.log}" />
  7. <property name="LOG_FILE_MAX_SIZE" value="5MB" />
  8. <property name="LOG_TOTAL_SIZE_CAP" value="50MB" />
  9. <property name="LOG_FILE_MAX_HISTORY" value="20" />
  10.  
  11. <include resource="file-appender.xml" />
  12.  
  13. <root level="INFO">
  14. <appender-ref ref="FILE" />
  15. </root>
  16. </configuration>
Add Comment
Please, Sign In to add comment