Skip to content

Commit b6ed186

Browse files
authored
removed message when no PSU was found (#1166)
1 parent e80b816 commit b6ed186

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private static synchronized XPathFactory factory() {
5858
public String getPSU() {
5959
// find the names in the directory first
6060
if (!(new File(patchesHome)).exists()) {
61-
LOGGER.info("No patches home at {0}", patchesHome);
61+
LOGGER.fine("No PSU, patches directory not found at {0}", patchesHome);
6262
return null;
6363
}
6464
List<String> patchFiles = findPatchFiles();

core/src/main/python/wlsdeploy/util/model_context.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,9 @@ def __copy_from_args(self, arg_map):
122122
psu = XPathUtil(self._oracle_home).getPSU()
123123
if psu is not None:
124124
self._wl_version += '.' + psu
125-
self._logger.info('WLSDPLY-01050', self._wl_version, class_name=self._class_name,
126-
method_name=_method_name)
125+
126+
self._logger.info('WLSDPLY-01050', self._wl_version, class_name=self._class_name,
127+
method_name=_method_name)
127128
self._wl_home = self._wls_helper.get_weblogic_home(self._oracle_home)
128129

129130
if CommandLineArgUtil.JAVA_HOME_SWITCH in arg_map:

0 commit comments

Comments
 (0)