Grails停留在Running Grails应用程序上

时间:2013-02-25 06:26:26

标签: grails grails-2.0

当我运行grails run-app

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

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

1 个答案:

答案 0 :(得分: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'
}

只需更改错误'到了所有'。

或者,您可能需要启用“' info'默认情况下记录所有记录器:

log4j = {
    root {
        info()
    }
    …
}