Skip to content

Commit 5417a1c

Browse files
committed
[MPLUGIN-365] Don't log a warning when packaging type unsupported -> info is enough
1 parent e477e6c commit 5417a1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public void execute()
187187
{
188188
if ( !packagingTypes.contains( project.getPackaging() ) )
189189
{
190-
getLog().warn( "Unsupported packaging type " + project.getPackaging() + ", execution skipped" );
190+
getLog().info( "Unsupported packaging type " + project.getPackaging() + ", execution skipped" );
191191
return;
192192
}
193193
if ( skip )

0 commit comments

Comments
 (0)