From bf2f14c26bdc73a8bb04f4ab8bd1961fd9a4ea7e Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Fri, 9 Sep 2005 15:10:43 +0000 Subject: [PATCH] logging git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@279792 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java index 33e76e6e9..04752028a 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java @@ -343,7 +343,7 @@ public class NetCommand { 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 @@ public class NetCommand { String newCommandLine[] = new String[2]; newCommandLine[0] = commands[0]; newCommandLine[1] = "@" + temporaryCommandFile.getAbsolutePath(); + logVerbose(newCommandLine.describeCommand()); executable.setCommandline(newCommandLine); } }