Return-Path: Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 64568 invoked by uid 500); 18 Jun 2003 07:44:57 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 64552 invoked by uid 500); 18 Jun 2003 07:44:56 -0000 Received: (qmail 64547 invoked from network); 18 Jun 2003 07:44:56 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 18 Jun 2003 07:44:56 -0000 Received: (qmail 16268 invoked by uid 1539); 18 Jun 2003 07:44:55 -0000 Date: 18 Jun 2003 07:44:55 -0000 Message-ID: <20030618074455.16267.qmail@icarus.apache.org> From: peterreilly@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs UpToDate.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N peterreilly 2003/06/18 00:44:55 Modified: src/main/org/apache/tools/ant/taskdefs UpToDate.java Log: get UpToDate task to log at verbose level when the target file does not exist PR: 20848 Obtained from: Eli Tucker Revision Changes Path 1.29 +3 -0 ant/src/main/org/apache/tools/ant/taskdefs/UpToDate.java Index: UpToDate.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/UpToDate.java,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- UpToDate.java 7 Mar 2003 11:23:02 -0000 1.28 +++ UpToDate.java 18 Jun 2003 07:44:55 -0000 1.29 @@ -77,6 +77,7 @@ * @author Hiroaki Nakamura * hnakamur@mc.neweb.ne.jp * @author Stefan Bodewig + * @author Eli Tucker * * @since Ant 1.2 * @@ -182,6 +183,8 @@ // if the target file is not there, then it can't be up-to-date if (_targetFile != null && !_targetFile.exists()) { + log("The targetfile \"" + _targetFile.getAbsolutePath() + + "\" does not exist.", Project.MSG_VERBOSE); return false; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org