Skip to content

Commit

Permalink
Log message about skip due to packaging in info level
Browse files Browse the repository at this point in the history
There is no error if plugin is skipped for specified packaging
Similar message about skip at all is also logged in info level.
  • Loading branch information
slawekjaranowski committed Jun 30, 2023
1 parent 82f70ae commit 4ddce18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public final void execute()
boolean canContinue = checkPackaging();
if ( !canContinue )
{
LOG.warn( "The goal is skip due to packaging '{}'", getProject().getPackaging() );
LOG.info( "The goal is skip due to packaging '{}'", getProject().getPackaging() );
return;
}

Expand Down

0 comments on commit 4ddce18

Please sign in to comment.