From ant-dev-return-15593-apmail-jakarta-ant-dev-archive=jakarta.apache.org@jakarta.apache.org Wed Jul 11 15:02:21 2001 Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@jakarta.apache.org Received: (qmail 76651 invoked by uid 500); 11 Jul 2001 15:01:58 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk Reply-To: ant-dev@jakarta.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 75861 invoked by uid 500); 11 Jul 2001 15:01:23 -0000 Delivered-To: apmail-jakarta-ant-cvs@apache.org Date: 11 Jul 2001 15:00:26 -0000 Message-ID: <20010711150026.75475.qmail@apache.org> From: conor@apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs Property.java conor 01/07/11 08:00:25 Modified: src/main/org/apache/tools/ant/taskdefs Property.java Log: Changed the logging level of invalid property files to warning PR: 1451 Revision Changes Path 1.27 +2 -2 jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Property.java Index: Property.java =================================================================== RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Property.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- Property.java 2001/07/10 14:55:38 1.26 +++ Property.java 2001/07/11 15:00:19 1.27 @@ -198,8 +198,8 @@ } addProperties(props); } else { - log("Unable to find " + file.getAbsolutePath(), - Project.MSG_VERBOSE); + log("Unable to find property file: " + file.getAbsolutePath(), + Project.MSG_WARN); } } catch(Exception ex) { throw new BuildException(ex.getMessage(), ex, location);