On Thu, Sep 3, 2009 at 11:39, Ernst de Haan<er...@pensioenpage.com> wrote:
> Here's an initial proposal for improving Ant output, making it less verbose:
> http://ernstdehaan.blogspot.com/2009/09/improving-ant-output.html
>
> What do you think? Do you consider the current Ant output too verbose or
> just fine?
> Have you every had issues examining why an Ant build failed and you wish you
> would have passed -verbose in the first place?
> And what do you think of the suggested changes?
>
> Kind regards,
>

In a more general way, I consider the lack of chaining information
disturbing. That is, if you do,

<target name="a"/>

<target name="b" depends="a"/>

and you invoke target b, the output will be:

----
a:

b:
----

I'd prefer:

----
a (from b):

b:
----

And more generally:

----
t1 (from t2) (from t3):
----

or alike.

I have the habit to separate targets as much as I can and deeply nest
them. Such information would be nice to have.

HTH,
-- 

Francis Galiegue
ONE2TEAM
Ingénieur système
Mob : +33 (0) 683 877 875
Tel : +33 (0) 178 945 552
f...@one2team.com
40 avenue Raymond Poincaré
75116 Paris

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to