我在Spring Boot(1.3 M1)中使用了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
但是,如何为根日志记录级别添加值?这两种方法失败了:
失败的方法1:
logging: level: WARN com.filenet.wcm: ERROR de.mycompany: DEBUG
失败的方法2:
logging: level: star: WARN com.filenet.wcm: ERROR de.mycompany: DEBUG
我阅读了docs,搜索了stackoverflow并用谷歌搜索,但没有找到有效语法的示例。
您可以ROOT用来配置根日志记录级别:
ROOT
logging: level: ROOT: DEBUG