You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2008/05/16 03:16:18 UTC

svn commit: r656915 - /geronimo/server/trunk/buildsupport/car-maven-plugin/src/main/java/org/apache/geronimo/mavenplugins/car/ArchiveMojo.java

Author: jdillon
Date: Thu May 15 18:16:18 2008
New Revision: 656915

URL: http://svn.apache.org/viewvc?rev=656915&view=rev
Log:
info -> debug

Modified:
    geronimo/server/trunk/buildsupport/car-maven-plugin/src/main/java/org/apache/geronimo/mavenplugins/car/ArchiveMojo.java

Modified: geronimo/server/trunk/buildsupport/car-maven-plugin/src/main/java/org/apache/geronimo/mavenplugins/car/ArchiveMojo.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/buildsupport/car-maven-plugin/src/main/java/org/apache/geronimo/mavenplugins/car/ArchiveMojo.java?rev=656915&r1=656914&r2=656915&view=diff
==============================================================================
--- geronimo/server/trunk/buildsupport/car-maven-plugin/src/main/java/org/apache/geronimo/mavenplugins/car/ArchiveMojo.java (original)
+++ geronimo/server/trunk/buildsupport/car-maven-plugin/src/main/java/org/apache/geronimo/mavenplugins/car/ArchiveMojo.java Thu May 15 18:16:18 2008
@@ -89,12 +89,12 @@
     private File targetFile;
 
     protected void doExecute() throws Exception {
-        //this installs the pom using the default artifact handler configured in components.xml
-        log.info("Setting artifact file: " + targetFile);
-
+        // this installs the pom using the default artifact handler configured in components.xml
+        log.debug("Setting artifact file: " + targetFile);
         org.apache.maven.artifact.Artifact artifact = project.getArtifact();
         artifact.setFile(targetFile);
-        //now pack up the server.
+        
+        // now pack up the server.
         ServerInfo serverInfo = new BasicServerInfo(targetServerDirectory.getAbsolutePath(), false);
         ArchiverGBean archiver = new ArchiverGBean(serverInfo);
         if (excludes != null) {