mirror of
https://github.com/apache/maven.git
synced 2025-02-09 03:25:23 +00:00
Merge branch 'master' of https://github.com/nerro/maven
This commit is contained in:
commit
90142e9780
@ -111,8 +111,12 @@ public void execute( MavenSession session )
|
||||
throw new BuilderNotFoundException( String.format( "The builder requested using id = %s cannot be found", builderId ) );
|
||||
}
|
||||
|
||||
int degreeOfConcurrency = session.getRequest().getDegreeOfConcurrency();
|
||||
if ( degreeOfConcurrency >= 2 )
|
||||
{
|
||||
logger.info( "" );
|
||||
logger.info( String.format( "Using the builder %s with a thread count of %s", builder.getClass().getName(), session.getRequest().getDegreeOfConcurrency() ) );
|
||||
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…
x
Reference in New Issue
Block a user