mirror of https://github.com/apache/maven.git
Merged https://github.com/apache/maven/pull/14. This closes #14.
This commit is contained in:
commit
0499d1d36a
|
@ -111,8 +111,12 @@ public class LifecycleStarter
|
|||
throw new BuilderNotFoundException( String.format( "The builder requested using id = %s cannot be found", builderId ) );
|
||||
}
|
||||
|
||||
logger.info( "" );
|
||||
logger.info( String.format( "Using the builder %s with a thread count of %s", builder.getClass().getName(), session.getRequest().getDegreeOfConcurrency() ) );
|
||||
int degreeOfConcurrency = session.getRequest().getDegreeOfConcurrency();
|
||||
if ( degreeOfConcurrency >= 2 )
|
||||
{
|
||||
logger.info( "" );
|
||||
logger.info( String.format( "Using the %s implementation with a thread count of %d", builder.getClass().getSimpleName(), degreeOfConcurrency ) );
|
||||
}
|
||||
builder.build( session, reactorContext, projectBuilds, taskSegments, reactorBuildStatus );
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue