You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2008/07/14 15:53:31 UTC

svn commit: r676591 - in /ant/core/trunk: WHATSNEW src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java

Author: bodewig
Date: Mon Jul 14 06:53:31 2008
New Revision: 676591

URL: http://svn.apache.org/viewvc?rev=676591&view=rev
Log:
log where ftp is going to

Modified:
    ant/core/trunk/WHATSNEW
    ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java

Modified: ant/core/trunk/WHATSNEW
URL: http://svn.apache.org/viewvc/ant/core/trunk/WHATSNEW?rev=676591&r1=676590&r2=676591&view=diff
==============================================================================
--- ant/core/trunk/WHATSNEW (original)
+++ ant/core/trunk/WHATSNEW Mon Jul 14 06:53:31 2008
@@ -159,6 +159,9 @@
    csvColumnSeparator and csvQuoteCharacter.
    Bugzilla report 35627.
 
+ * <ftp>'s logging has been improved.
+   Bugzilla report 30932.
+
 Changes from Ant 1.7.0 TO Ant 1.7.1
 =============================================
 

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java?rev=676591&r1=676590&r2=676591&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java Mon Jul 14 06:53:31 2008
@@ -2366,7 +2366,8 @@
                     }, "Site Command: " + this.siteCommand);
             } else {
                 if (remotedir != null) {
-                    log("changing the remote directory", Project.MSG_VERBOSE);
+                    log("changing the remote directory to " + remotedir,
+                        Project.MSG_VERBOSE);
                     ftp.changeWorkingDirectory(remotedir);
                     if (!FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
                         throw new BuildException("could not change remote "