You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2020/07/05 12:21:05 UTC

[maven-antrun-plugin] branch MANTRUN-228 updated: remove debug logging

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch MANTRUN-228
in repository https://gitbox.apache.org/repos/asf/maven-antrun-plugin.git


The following commit(s) were added to refs/heads/MANTRUN-228 by this push:
     new c9d2b32  remove debug logging
c9d2b32 is described below

commit c9d2b3288d796c784803bd0be8656b4efb95923a
Author: rfscholte <rf...@apache.org>
AuthorDate: Sun Jul 5 14:20:58 2020 +0200

    remove debug logging
---
 src/main/java/org/apache/maven/plugins/antrun/AntRunMojo.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/antrun/AntRunMojo.java b/src/main/java/org/apache/maven/plugins/antrun/AntRunMojo.java
index 81fcf7c..a0f0892 100644
--- a/src/main/java/org/apache/maven/plugins/antrun/AntRunMojo.java
+++ b/src/main/java/org/apache/maven/plugins/antrun/AntRunMojo.java
@@ -566,7 +566,6 @@ public class AntRunMojo
         {
             for ( String name : target.getAttributeNames() )
             {
-                getLog().debug( "attribute names " + name );
                 if ( name.startsWith( "xmlns:" ) 
                         && "http://maven.apache.org/ANTRUN".equals( target.getAttribute( name ) ) )
                 {
@@ -575,7 +574,6 @@ public class AntRunMojo
                 }
             }
         }
-        getLog().debug( "taskPrefix " + taskPrefix );
         return taskPrefix;
     }