gpt4 book ai didi

grails - 如何为grails插件配置log4j?

转载 作者:行者123 更新时间:2023-12-02 16:04:03 24 4
gpt4 key购买 nike

这是我插件的Config.groovy中的log4j配置:

log4j = {       
appenders {
console name: "stdout",
layout: pattern(conversionPattern: "%c{2} %m%n")
}

debug 'grails.app.services'
}

我有一个可以记录日志的服务,但是我没有在我的stdout上看到任何记录器打印,只是为了确保我同时使用了println和log.info,但是我只看到了println输出。

我已经看到了,但没有帮助。

How do I configure logging for a grails plugin?

最佳答案

您需要为根记录器配置日志级别和附加器,将其用作所有其他记录器的默认值。假设您要使用错误作为默认级别,并且仅将日志发送(附加)到控制台,请执行以下操作:

log4j = {       
appenders {
console name: "stdout", layout: pattern(conversionPattern: "%c{2} %m%n")
}


root {
// by default, log at the ERROR level and send logs to the console
error 'stdout'
}

// override the default level to DEBUG for service classes
debug 'grails.app.services'
}

关于grails - 如何为grails插件配置log4j?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27122958/

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