Skip to content

Commit

Permalink
[MDEP-779] Only print classes when verbose.
Browse files Browse the repository at this point in the history
  • Loading branch information
josephw committed Jan 30, 2022
1 parent bdc2eac commit b99d6fd
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,14 @@ private boolean checkDependencies()
{
getLog().warn( "Used undeclared dependencies found:" );

logArtifacts( usedUndeclaredWithClasses, true );
if ( verbose )
{
logArtifacts( usedUndeclaredWithClasses, true );
}
else
{
logArtifacts( usedUndeclaredWithClasses.keySet(), true );
}
reported = true;
warning = true;
}
Expand Down

0 comments on commit b99d6fd

Please sign in to comment.