How to get more info on Grails app stuck in Configuring classpath stage?

后端 未结 3 2020
误落风尘
误落风尘 2021-02-19 02:32

I am running a Grails application and it just gets stuck in the Configuring class path stage, Is there any way to get more info on whats going on? I tried the verboseCompi

3条回答
  •  误落风尘
    2021-02-19 03:21

    Look for the BuildConfig.groovy file here (/AppName/grails-app/conf/BuildConfig.groovy) and then find the log parameter and set it to verbose.

    grails.project.dependency.resolution = {
    ...
    log "verbose" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
    ...
    

提交回复
热议问题