此帖子尚未被邮件列表接受。 大家好,
提前感谢您提供的任何帮助。 我在尝试跟踪我的日志到文件时遇到了问题,并且不明白我使用的语法有什么问题。 以下是我登录Config.groovy的设置:
[SNIP]
log4j = {
// Example of changing the log pattern for the default console
// appender:
appenders {
// console name:'stdout', layout:pattern(conversionPattern: '%c{2} %m%n')
file name: "scraperServiceLogger",
file: "target/scraperService.log"
}
error 'org.codehaus.groovy.grails.web.servlet', // controllers
'org.codehaus.groovy.grails.web.pages', // GSP
'org.codehaus.groovy.grails.web.sitemesh', // layouts
'org.codehaus.groovy.grails.web.mapping.filter', // URL mapping
'org.codehaus.groovy.grails.web.mapping', // URL mapping
'org.codehaus.groovy.grails.commons', // core / classloading
'org.codehaus.groovy.grails.plugins', // plugins
'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration
'org.springframework',
'org.hibernate',
'net.sf.ehcache.hibernate'
'grails.app.'
error scraperServiceLogger: "grails.app.service.ScraperService"
warn 'org.mortbay.log'
debug 'grails.test.*'
}
[/SNIP]
以下是我在ScraperService.groovy中尝试使用它的方法:
[SNIP]
log.error "test"
[/SNIP]
我想要写入的文件是正确创建的,但登录只显示在控制台上。 任何帮助非常感谢:)
一切顺利。
答案 0 :(得分:1)
尝试将完整包用于您的服务
错误scraperServiceLogger:“grails.app.service.com.whatever.ScraperService”