epsilones
epsilones

Reputation: 11609

Accessing logs for ant

I am trying to install a project from github using phpunit. The project uses composer to install the dependencies. When I run ant to build the project, I get a simple error message, but I would like to access more complete logs of ant. Is it accessible ?

Best, Mehdi

Upvotes: 2

Views: 54

Answers (1)

seba.wagner
seba.wagner

Reputation: 3870

See:
http://ant.apache.org/manual/running.html

For example using:

-verbose, -v

is quite popular to see what ANT does and how it does resolve dependencies.

Sebastian

Upvotes: 3

Related Questions