Author: bodewig
Date: Wed Dec  9 19:33:58 2009
New Revision: 888933

URL: http://svn.apache.org/viewvc?rev=888933&view=rev
Log:
add some debug statements in the hope to avoid the problems described in 
bugzilla issue 42696

Modified:
    
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/ExpandBase.java
    
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Unzip.java

Modified: 
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/ExpandBase.java
URL: 
http://svn.apache.org/viewvc/ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/ExpandBase.java?rev=888933&r1=888932&r2=888933&view=diff
==============================================================================
--- 
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/ExpandBase.java
 (original)
+++ 
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/ExpandBase.java
 Wed Dec  9 19:33:58 2009
@@ -126,6 +126,7 @@
             ArchiveEntry ent = null;
             while ((ent = is.getNextEntry()) != null) {
                 empty = false;
+                log("extracting " + ent.getName(), Project.MSG_DEBUG);
                 extractFile(FileUtils.getFileUtils(), null, dir, is,
                             ent.getName(), EntryHelper.getLastModified(ent),
                             ent.isDirectory(), mapper);

Modified: 
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Unzip.java
URL: 
http://svn.apache.org/viewvc/ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Unzip.java?rev=888933&r1=888932&r2=888933&view=diff
==============================================================================
--- 
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Unzip.java 
(original)
+++ 
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Unzip.java 
Wed Dec  9 19:33:58 2009
@@ -64,6 +64,7 @@
             while (e.hasMoreElements()) {
                 empty = false;
                 ZipArchiveEntry ze = (ZipArchiveEntry) e.nextElement();
+                log("extracting " + ze.getName(), Project.MSG_DEBUG);
                 InputStream is = null;
                 try {
                     extractFile(fileUtils, srcF, dir,


Reply via email to