Browse Source

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
master
Conor MacNeill 24 years ago
parent
commit
c1a5419faf
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java View File

@@ -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);


Loading…
Cancel
Save