我正在使用mysql将简单的grails应用程序部署到我的测试服务器(Tomcat 7)。
我使用grails war
命令
如何配置日志记录以便将日志发送到单独的文件而不是发送到localhost.log?
答案 0 :(得分:4)
你应该看一下grails logging documentation。您可以在配置中为此创建额外的log4j文件追加器。
这样的事情:
log4j = {
appenders {
file name:'file', file:'/var/logs/mylog.log'
}
root {
debug 'stdout', 'file'
}
}
(从日志文档中复制)