Skip to content

Commit

Permalink
[MPLUGIN-289] improved output
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1659897 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
hboutemy committed Feb 15, 2015
1 parent 4b16f1d commit 0fec67e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,15 @@ public void populatePluginDescriptor( PluginToolsRequest request )

if ( extractor == null )
{
throw new ExtractionException( "No mojo extractor with id: " + extractorId );
throw new ExtractionException( "No mojo extractor with '" + extractorId + "' id." );
}

logger.debug( "Applying mojo extractor with id: " + extractorId );
logger.debug( "Applying " + extractorId + " mojo extractor" );

List<MojoDescriptor> extractorDescriptors = extractor.execute( request );

logger.info( "Mojo extractor with id: " + extractorId + " found " + extractorDescriptors.size()
+ " mojo descriptors." );
logger.info( extractorId + " mojo extractor found " + extractorDescriptors.size()
+ " mojo descriptor" + ( extractorDescriptors.size() > 1 ? "s" : "" ) + "." );
numMojoDescriptors += extractorDescriptors.size();

for ( MojoDescriptor descriptor : extractorDescriptors )
Expand Down

0 comments on commit 0fec67e

Please sign in to comment.