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 )
                 {


Reply via email to