You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by st...@apache.org on 2011/05/23 11:42:16 UTC

svn commit: r1126408 - /maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java

Author: stephenc
Date: Mon May 23 09:42:16 2011
New Revision: 1126408

URL: http://svn.apache.org/viewvc?rev=1126408&view=rev
Log:
picking up some comments from Brett on r1126367

Modified:
    maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java

Modified: maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java?rev=1126408&r1=1126407&r2=1126408&view=diff
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java (original)
+++ maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/AbstractDeployMojo.java Mon May 23 09:42:16 2011
@@ -170,7 +170,8 @@ public abstract class AbstractDeployMojo
             catch ( ArtifactDeploymentException e )
             {
                 if (count + 1 < retryFailedDeploymentCount) {
-                    getLog().warn( "Something went wrong with the deployment, will try again", e );
+                    getLog().warn( "Encountered issue during deployment: " + e.getLocalizedMessage());
+                    getLog().debug( e );
                 }
                 if ( exception == null )
                 {