Browse Source

logging

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@279792 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 20 years ago
parent
commit
bf2f14c26b
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java

+ 2
- 1
src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java View File

@@ -343,7 +343,7 @@ public class NetCommand {
FileOutputStream fos = null; FileOutputStream fos = null;


temporaryCommandFile = FILE_UTILS.createTempFile("cmd", ".txt", 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 { try {
fos = new FileOutputStream(temporaryCommandFile); fos = new FileOutputStream(temporaryCommandFile);
@@ -361,6 +361,7 @@ public class NetCommand {
String newCommandLine[] = new String[2]; String newCommandLine[] = new String[2];
newCommandLine[0] = commands[0]; newCommandLine[0] = commands[0];
newCommandLine[1] = "@" + temporaryCommandFile.getAbsolutePath(); newCommandLine[1] = "@" + temporaryCommandFile.getAbsolutePath();
logVerbose(newCommandLine.describeCommand());
executable.setCommandline(newCommandLine); executable.setCommandline(newCommandLine);
} }
} }


Loading…
Cancel
Save