conor 01/07/12 04:26:23
Modified: src/main/org/apache/tools/ant/taskdefs Property.java
Log:
Set level back to verbose - messages are too annoying as it is common
to attempt to load property files which don't exist - there for optional
override of properties.
PR: 1451
Revision Changes Path
1.28 +1 -1 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.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- Property.java 2001/07/11 15:00:19 1.27
+++ Property.java 2001/07/12 11:26:19 1.28
@@ -199,7 +199,7 @@
addProperties(props);
} else {
log("Unable to find property file: " + file.getAbsolutePath(),
- Project.MSG_WARN);
+ Project.MSG_VERBOSE);
}
} catch(Exception ex) {
throw new BuildException(ex.getMessage(), ex, location);
|