From dev-return-68808-apmail-ant-dev-archive=ant.apache.org@ant.apache.org Fri Sep 09 15:10:54 2005 Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 92532 invoked from network); 9 Sep 2005 15:10:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Sep 2005 15:10:53 -0000 Received: (qmail 61908 invoked by uid 500); 9 Sep 2005 15:10:52 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 61731 invoked by uid 500); 9 Sep 2005 15:10:51 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 61718 invoked by uid 500); 9 Sep 2005 15:10:51 -0000 Received: (qmail 61715 invoked by uid 99); 9 Sep 2005 15:10:50 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 09 Sep 2005 08:10:50 -0700 Received: (qmail 92495 invoked by uid 65534); 9 Sep 2005 15:10:50 -0000 Message-ID: <20050909151050.92492.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r279792 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java Date: Fri, 09 Sep 2005 15:10:50 -0000 To: ant-cvs@apache.org From: mbenson@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mbenson Date: Fri Sep 9 08:10:43 2005 New Revision: 279792 URL: http://svn.apache.org/viewcvs?rev=279792&view=rev Log: logging Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java URL: http://svn.apache.org/viewcvs/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java?rev=279792&r1=279791&r2=279792&view=diff ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java Fri Sep 9 08:10:43 2005 @@ -343,7 +343,7 @@ FileOutputStream fos = null; temporaryCommandFile = FILE_UTILS.createTempFile("cmd", ".txt", null); - owner.log("Using response file" + temporaryCommandFile, Project.MSG_VERBOSE); + owner.log("Using response file " + temporaryCommandFile, Project.MSG_VERBOSE); try { fos = new FileOutputStream(temporaryCommandFile); @@ -361,6 +361,7 @@ String newCommandLine[] = new String[2]; newCommandLine[0] = commands[0]; newCommandLine[1] = "@" + temporaryCommandFile.getAbsolutePath(); + logVerbose(newCommandLine.describeCommand()); executable.setCommandline(newCommandLine); } } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org