Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 5603 invoked from network); 9 Dec 2009 17:40:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Dec 2009 17:40:44 -0000 Received: (qmail 26646 invoked by uid 500); 9 Dec 2009 17:40:43 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 26351 invoked by uid 500); 9 Dec 2009 17:40:42 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 26342 invoked by uid 99); 9 Dec 2009 17:40:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Dec 2009 17:40:42 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Dec 2009 17:40:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 391D723888FD; Wed, 9 Dec 2009 17:40:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r888888 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Expand.java Date: Wed, 09 Dec 2009 17:40:19 -0000 To: notifications@ant.apache.org From: bodewig@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091209174019.391D723888FD@eris.apache.org> Author: bodewig Date: Wed Dec 9 17:40:18 2009 New Revision: 888888 URL: http://svn.apache.org/viewvc?rev=888888&view=rev Log: add a debug log statement to increase pressure on GC and hope to avoid PR 42696 Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Expand.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Expand.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Expand.java?rev=888888&r1=888887&r2=888888&view=diff ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Expand.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Expand.java Wed Dec 9 17:40:18 2009 @@ -174,6 +174,7 @@ empty = false; ZipEntry ze = (ZipEntry) e.nextElement(); InputStream is = null; + log("extracting " + ze.getName(), Project.MSG_DEBUG); try { extractFile(fileUtils, srcF, dir, is = zf.getInputStream(ze),