Author: dennisl Date: Sun Mar 1 15:07:27 2009 New Revision: 749044 URL: http://svn.apache.org/viewvc?rev=749044&view=rev Log: [MSITE-350] site:deploy not verbose enough, not, _at all_ with -X
o Add debug logging stating where the site will be deployed Modified: maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java Modified: maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java?rev=749044&r1=749043&r2=749044&view=diff ============================================================================== --- maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java (original) +++ maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java Sun Mar 1 15:07:27 2009 @@ -138,6 +138,7 @@ { throw new MojoExecutionException( "The URL to the site is missing in the project descriptor." ); } + getLog().debug( "The site will be deployed to '" + url + "'"); Repository repository = new Repository( id, url );