don't show if empty

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163626 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-03-21 01:48:44 +00:00
parent 51bb8c2193
commit e452a9ca52
1 changed files with 5 additions and 2 deletions

View File

@ -350,9 +350,12 @@ public class DefaultMaven
line(); line();
getLogger().info( e.getLongMessage() ); if ( e.getLongMessage() != null )
{
getLogger().info( e.getLongMessage() );
line(); line();
}
stats( r.getStart(), r.getFinish() ); stats( r.getStart(), r.getFinish() );