您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

30 行
802 B

  1. Configutation:
  2. name: Prod-Default
  3. Properties:
  4. Property:
  5. name: log_location
  6. value: /usr/springboot/logs/
  7. Appenders:
  8. RollingFile:
  9. - name: AllRollingFile_Appender
  10. fileName: ${log_location}fhsmsc-all.log
  11. filePattern: ${log_location}fhsmsc-all-%d{yyyy-MM-dd}.log.gz
  12. PatternLayout:
  13. Pattern: "%d %p [%l] - %m%n"
  14. Policies:
  15. TimeBasedTriggeringPolicy:
  16. interval: 1
  17. modulate: true
  18. DefaultRolloverStrategy:
  19. Delete:
  20. basePath: ${log_location}
  21. maxDepth: 1
  22. IfFileName:
  23. glob: fhsmsc-all-*.log.gz
  24. IfLastModified:
  25. age: P40D
  26. Loggers:
  27. Root:
  28. level: info
  29. AppenderRef:
  30. - ref: AllRollingFile_Appender