PR: MNG-790

trace was too verbose for a warning

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@240374 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-08-27 02:04:14 +00:00
parent cafb004caf
commit ffb317c27d
1 changed files with 2 additions and 1 deletions

View File

@ -359,7 +359,8 @@ public class DefaultMavenProjectBuilder
}
catch ( ArtifactResolutionException e )
{
getLogger().warn( "Error updating POM - using existing version", e );
getLogger().warn( "Error updating POM - using existing version" );
getLogger().debug( "Cause", e );
}
}
}