spring boot config logging.pattern无法打印日志?

时间:2016-01-04 09:51:21

标签: spring spring-boot spring-cloud

https://github.com/Dreampie/cloud-config-repo/blob/master/application.yml

logging:
  level:
    ROOT: INFO
  pattern:
    file: ${spring.application.name}.%d{yyyy-MM-dd}.log

当我在spring cloud + docker中使用spring boot logging时,我找不到任何日志。

1 个答案:

答案 0 :(得分:0)

默认情况下,您没有获得日志文件(这是纯粹的Spring Boot功能)。您必须配置一个(例如设置logging.file)。看起来这实际上是你想要做的,但你的配置文件中有错误的密钥(你的pattern就是这样)。