Skip to content

Commit

Permalink
[MPLUGIN-365] Don't log a warning when packaging type unsupported -> …
Browse files Browse the repository at this point in the history
…info is enough
  • Loading branch information
rfscholte committed Apr 20, 2021
1 parent e477e6c commit 5417a1c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -187,7 +187,7 @@ public void execute()
{
if ( !packagingTypes.contains( project.getPackaging() ) )
{
getLog().warn( "Unsupported packaging type " + project.getPackaging() + ", execution skipped" );
getLog().info( "Unsupported packaging type " + project.getPackaging() + ", execution skipped" );
return;
}
if ( skip )
Expand Down

0 comments on commit 5417a1c

Please sign in to comment.