2

当我跑步时grails run-app

它到达Running Grails application并坐在那里。

我该如何调试?我可以打开更多日志吗?它在做什么?grails 在“运行”应用程序时是否会查看方法或配置?

4

1 回答 1

2

Config.groovy中,有一个用于记录的哈希。默认情况下,我的看起来像:

log4j = {
    // Example of changing the log pattern for the default console appender:
    //
    appenders {
        console name:'stdout', layout:pattern(conversionPattern: '%c{2} %m%n')
    }

    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.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'
}

只需将“错误”更改为“全部”即可。

或者,您可能希望默认为所有记录器打开“信息”日志记录:

log4j = {
    root {
        info()
    }
    …
}
于 2013-02-25T06:30:36.937 回答