当前位置: 首页 > 知识库问答 >
问题:

在application.yml中设置根日志记录级别

虞俊美
2023-03-14

我在Spring Boot(1.3M1)中使用了application.properties,并开始将其转换为yaml文件,因为它变得越来越复杂。

但我在将其转换为YAML时遇到了问题:

logging.level.*=WARN
logging.level.com.filenet.wcm=ERROR
logging.level.de.mycompany=DEBUG
logging:
    level:
        com.filenet.wcm: ERROR
        de.mycompany: DEBUG
logging:
    level: WARN
        com.filenet.wcm: ERROR
        de.mycompany: DEBUG    
logging:
    level: 
        star: WARN
        com.filenet.wcm: ERROR
        de.mycompany: DEBUG    

共有1个答案

茅和玉
2023-03-14

可以使用root配置根日志记录级别:

logging:
  level:
    ROOT: DEBUG
 类似资料: