> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]


>       /**
>        * Printout all the properties in ant runtime.
>        */
>       public void execute()
>       {
>           final Map properties = getContext().getProperties();
>           final Iterator iterator = properties.keySet().iterator();
>           while( iterator.hasNext() )
>           {
>               final String key = (String)iterator.next();
>               final Object value = properties.get( key );
>               getContext().warn( key + "=" + value );
>           }
>       }

I wonder whether it's time for a new log level.  It strikes me as kinda odd
that we have to use warn() rather than info() to write info messages that we
want to appear when not running --verbose.  We probably want to pull info()
and warn() up, and add a verbose() or verboseInfo() between debug() and
info().

Thoughts?  How is this going to work with Logger?


Adam


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to