picking up some comments from Brett on r1126367

git-svn-id: https://svn.apache.org/repos/asf/maven/plugins/trunk@1126407 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/maven/plugin/gpg/SignAndDeployFileMojo.java b/src/main/java/org/apache/maven/plugin/gpg/SignAndDeployFileMojo.java
index 58e2554..c8207d4 100644
--- a/src/main/java/org/apache/maven/plugin/gpg/SignAndDeployFileMojo.java
+++ b/src/main/java/org/apache/maven/plugin/gpg/SignAndDeployFileMojo.java
@@ -590,7 +590,8 @@
             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 )
                 {