On Thu, 21 Mar 2002 20:42, Adam Murdoch wrote:
> > -----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().

How about

debug()    (full debug output - meant for task writers)
verbose()  (printout when verbose - useful to get more information without 
being flooded - still meant for build file writers)
info()     (regular printout)
warn()     (Something bad occured like unable to delete file no stop build)
error()    (Stop the compile errors)

> Thoughts?  How is this going to work with Logger?

Bump everything up a level after debug(). ie error --> Logger.fatalError(), 
warn --> Logger.error() etc.


-- 
Cheers,

Pete

-----------------------------------------------------------
 "Remember, your body is a temple; however, it's also your 
 dancehall and bowling alley"   -- Dharma Montgomery
-----------------------------------------------------------

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

Reply via email to