>= would not be what I want. Why do you need
to track every visited target at the default MSG_INFO
level. I think it is more appropriate for MSG_VERBOSE.
Especially since you end up getting lots of output for things
that don't do anything other than initialize and manipulate
properties, etc.
I don't want to resort to using -quiet, because then I don't
get any informative output when useful things are done,
such as from the builtin tasks, like javac, copy, delete, etc.
'>' is really a more useable setting for this, no?
Jason
----- Original Message -----
From: "Stefan Bodewig" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 16, 2001 3:22 AM
Subject: Re: What I did to DefaultLogger.java
> Jason Rosenberg <[EMAIL PROTECTED]> wrote:
>
> > But, I just changed the 'targetStarted' method in DefaulLogger to:
> >
> > public void targetStarted(BuildEvent event) {
> > /*
> > ** was set for <= MSG_INFO, but I don't
> > ** think that is useful....Jason
> > */
> > if (msgOutputLevel > Project.MSG_INFO) {
> > out.println(lSep + event.getTarget().getName() + ":");
> > }
> > }
>
> I think this has already been fixed (using >= instead of >
> BTW). Please take a look at the current sources.
>
> Stefan
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>