gpt4 book ai didi

java - 在 application.yml 中设置根日志级别

转载 作者:IT老高 更新时间:2023-10-28 20:26:26 25 4
gpt4 key购买 nike

我在 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

但是如何添加根日志级别的值?这两种方法都失败了:

方法一失败:

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

方法2失败:

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

我阅读了 docs ,搜索了 stackoverflow 和 google,但没有找到有效语法的示例。

最佳答案

您可以使用 ROOT 来配置根日志级别:

logging:
level:
ROOT: DEBUG

关于java - 在 application.yml 中设置根日志级别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31290204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com