Ivy Debug Level in Eclipse

I want to change the ivy message level to debug my ivy settings in eclipse, and I have no idea how to set it to the debugging level / verbose.

+6
source share
3 answers

For future reference:

You can change the Ivy message level to IvyDE by following these steps: http://ant.apache.org/ivy/ivyde/history/latest-milestone/console.html

The message level can be changed when Ivy starts as a standalone program by adding the arguments "-verbose" or "-debug". ex: java -jar ivy.jar -verbose

+6
source

I just wanted to add that if you perform Ivy tasks through Ant in Eclipse , you can set the verbosity level to -verbose for Ivy as follows:

  • Run Menu> External Tools> External Tool Configurations
  • Choose embedded assembly
  • Add '-verbose' to the Arguments text box

enter image description here

+4
source

http://ant.apache.org/ivy/ivyde/history/latest-milestone/console.html

via Zoop answer SO: 11744878/611007

basically: eclipse> window> show views> other> type: console

in the console view that should appear, select the console on the right: star icon / a>

and in the "Error" drop-down menu you can also select the log level:

error with a drop-down list containing different log levels

+1
source

Source: https://habr.com/ru/post/921779/


All Articles