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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to