如何在grails 1.3.7中记录sql

时间:2011-03-04 12:13:00

标签: grails gorm

我尝试在数据源(测试环境)中使用logSql = true为grails中的sql配置日志,但测试输出中没有显示任何内容。

我看了这篇文章,但它没有用。

How to log SQL statements in Grails

由于

1 个答案:

答案 0 :(得分:10)

我们在Config.groovy中做到了,

log4j = {
// ... whatever

    debug    'org.hibernate.SQL',
             'org.hibernate.transaction' // optionally
}

Log4j is configured differently since Grails 1.1.