作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我插件的Config.groovy
中的log4j配置:
log4j = {
appenders {
console name: "stdout",
layout: pattern(conversionPattern: "%c{2} %m%n")
}
debug 'grails.app.services'
}
最佳答案
您需要为根记录器配置日志级别和附加器,将其用作所有其他记录器的默认值。假设您要使用错误作为默认级别,并且仅将日志发送(附加)到控制台,请执行以下操作:
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/
我是一名优秀的程序员,十分优秀!