Guest User

Untitled

a guest
Feb 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!-- File appender logback configuration provided for import, equivalent
  4. to the programmatic initialization performed by Boot -->
  5.  
  6. <included>
  7. <appender name="FILE"
  8. class="ch.qos.logback.core.rolling.RollingFileAppender">
  9. <encoder>
  10. <pattern>${FILE_LOG_PATTERN}</pattern>
  11. </encoder>
  12. <file>${LOG_FILE}</file>
  13. <rollingPolicy
  14. class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
  15. <fileNamePattern>${LOG_FILE}.%i</fileNamePattern>
  16. </rollingPolicy>
  17. <triggeringPolicy
  18. class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
  19. <MaxFileSize>10MB</MaxFileSize>
  20. </triggeringPolicy>
  21. </appender>
  22. </included>
Add Comment
Please, Sign In to add comment