o remove a bit of the noise


git-svn-id: https://svn.apache.org/repos/asf/maven/plugins/trunk@485225 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java b/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java
index 38465ea..739d636 100644
--- a/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java
+++ b/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java
@@ -113,6 +113,8 @@
     public void execute()
         throws MojoExecutionException, MojoFailureException
     {
+        System.out.println( "altDeploymentRepository = " + altDeploymentRepository );
+
         ArtifactRepository repo = getDeploymentRepository();
 
         String protocol = repo.getProtocol();
@@ -186,6 +188,8 @@
 
         if ( altDeploymentRepository != null )
         {
+            getLog().info( "Using alternate deployment repository " + altDeploymentRepository );
+
             Matcher matcher = ALT_REPO_SYNTAX_PATTERN.matcher( altDeploymentRepository );
 
             if ( !matcher.matches() )