groovy grape verbose

后端 未结 4 1724
醉梦人生
醉梦人生 2020-12-14 17:39

Is there a way to print Ivy output when using Groovy Grape.

when I use Grape, it\'s just hanging there till finishes downloading all dependencies. I would like to kn

4条回答
  •  执笔经年
    2020-12-14 18:11

    For full debugging, you need to use both of these settings exported via JAVA_OPTS when running in a Groovy script.

    export JAVA_OPTS='-Divy.message.logger.level=4 -Dgroovy.grape.report.downloads=true'
    ./myScript.groovy
    

提交回复
热议问题