Skip to content

Commit bd18de1

Browse files
Update XPathUtil.java
remove temp logs
1 parent f209654 commit bd18de1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

core/src/main/java/oracle/weblogic/deploy/util/XPathUtil.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,10 @@ public String getPSU() {
6060
for (String patch_file : patch_files){
6161
Document doc = readXmlFile(patch_file);
6262
String descrip = description(doc, "//@description");
63-
LOGGER.info("Description {0}", descrip);
6463
if (descrip.startsWith("WLS PATCH SET UPDATE")) {
6564
int idx = descrip.lastIndexOf('.');
6665
String psu = descrip.substring(idx+1);
67-
LOGGER.info("PSU Is {0}", psu);
68-
list.add(psu);
66+
list.add(psu);
6967
Collections.sort(list);
7068
return list.get(list.size() -1);
7169
}

0 commit comments

Comments
 (0)