Yes for the moment, I think we don't have a log strategy. Jason?

Emmanuel

----- Original Message ----- 
From: "Brett Porter" <[EMAIL PROTECTED]>
To: "Maven Developers List" <[EMAIL PROTECTED]>
Sent: Friday, May 28, 2004 2:02 PM
Subject: Re: cvs commit:
maven-components/maven-core/src/main/java/org/apache/maven
DefaultMavenCore.java


> Are we really still using System.out in the new code? I thought there
> would be some monitors for this.
>
> [EMAIL PROTECTED] wrote:
>
> >evenisse    2004/05/28 04:59:56
> >
> >  Modified:    maven-core/src/main/java/org/apache/maven
> >                        DefaultMavenCore.java
> >  Log:
> >  Add some trace processing for reactor.
> >
> >  Revision  Changes    Path
> >  1.8       +9 -0
maven-components/maven-core/src/main/java/org/apache/maven/DefaultMavenCore.
java
> >
> >  Index: DefaultMavenCore.java
> >  ===================================================================
> >  RCS file:
/home/cvs/maven-components/maven-core/src/main/java/org/apache/maven/Default
MavenCore.java,v
> >  retrieving revision 1.7
> >  retrieving revision 1.8
> >  diff -u -r1.7 -r1.8
> >  --- DefaultMavenCore.java 28 May 2004 11:32:09 -0000 1.7
> >  +++ DefaultMavenCore.java 28 May 2004 11:59:56 -0000 1.8
> >  @@ -107,6 +107,8 @@
> >           throws ReactorException, GoalNotFoundException
> >       {
> >           List projects = new ArrayList();
> >  +
> >  +        System.out.println( "Starting the reactor..." );
> >
> >           try
> >           {
> >  @@ -122,6 +124,13 @@
> >           catch ( Exception e )
> >           {
> >               throw new ReactorException( "Error processing projects for
the reactor: ", e );
> >  +        }
> >  +
> >  +        System.out.println( "Our processing order:" );
> >  +        for ( Iterator iterator = projects.iterator();
iterator.hasNext(); )
> >  +        {
> >  +            MavenProject project = (MavenProject) iterator.next();
> >  +            System.out.println( project.getName() );
> >           }
> >
> >           String[] goalsList = StringUtils.split( goals, "," );
> >
> >
> >
> >
> >---------------------------------------------------------------------
> >To unsubscribe, e-mail: [EMAIL PROTECTED]
> >For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >.
> >
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


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

Reply via email to