From c1a5419faf39033ffc2db1dcf8000f6a796f2dad Mon Sep 17 00:00:00 2001 From: Conor MacNeill Date: Fri, 12 Jan 2001 11:43:08 +0000 Subject: [PATCH] Made CMP warning only at verbose level. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268443 13f79535-47bb-0310-9956-ffa450edef68 --- .../ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java b/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java index 1fad61dd7..841a610a0 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java @@ -260,9 +260,9 @@ public class WeblogicDeploymentTool extends GenericDeploymentTool { } if (oldCMP) { - log("The old method for locating CMP files has been DEPRECATED.", Project.MSG_INFO); + log("The old method for locating CMP files has been DEPRECATED.", Project.MSG_VERBOSE); log("Please adjust your weblogic descriptor and set oldCMP=\"false\" " + - "to use the new CMP descriptor inclusion mechanism. ", Project.MSG_INFO); + "to use the new CMP descriptor inclusion mechanism. ", Project.MSG_VERBOSE); // The the weblogic cmp deployment descriptor File weblogicCMPDD = new File(getDescriptorDir(), ddPrefix + WL_CMP_DD);