+1 vote
in DevOps by

Explain How To Debug My Ant Script?

1 Answer

0 votes
by
ANT script can be debugged in the following ways:

By echoing at the place to debug. The problem is easily known. This is similar to printf() function in C and System.out.println() in Java.

By using project.log (“message”) in the java script or the customized ant task.

By running ANT with –verbose / -debug options. These options provide more information on what is the process going and at which location.

Related questions

+1 vote
asked May 9, 2020 in DevOps by Robindeniel
+1 vote
asked May 9, 2020 in DevOps by Robindeniel
...