MNG-5625: Correct the wording of the log message

This commit is contained in:
Pavel Sorokin 2014-05-24 12:22:08 +02:00
parent 7a3e1ad740
commit 9468599ca3
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public class LifecycleStarter
if ( degreeOfConcurrency >= 2 )
{
logger.info( "" );
logger.info( String.format( "Using the builder %s with a thread count of %s", builder.getClass().getSimpleName(), degreeOfConcurrency ) );
logger.info( String.format( "Using the %s implemenation with a thread count of %d", builder.getClass().getSimpleName(), degreeOfConcurrency ) );
}
builder.build( session, reactorContext, projectBuilds, taskSegments, reactorBuildStatus );