Skip to content

Commit 42623d9

Browse files
committed
JIRA WDT-47 Changed log level for remove and add of providers
1 parent 3c3a127 commit 42623d9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core/src/main/python/wlsdeploy/tool/create/creator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def _create_subfolders(self, location, model_nodes):
401401
if self.alias_helper.requires_artificial_type_subfolder_handling(sub_location):
402402
self.logger.finest('WLSDPLY-12116', key, str(sub_location), subfolder_nodes,
403403
class_name=self.__class_name, method_name=_method_name)
404-
self._create_security_provider_mbeans(key, subfolder_nodes, location)
404+
self._create_security_provider_mbeans(key, subfolder_nodes, location, True)
405405
elif len(subfolder_nodes) != 0:
406406
if self.alias_helper.supports_multiple_mbean_instances(sub_location):
407407
self.logger.finest('WLSDPLY-12109', key, str(sub_location), subfolder_nodes,
@@ -497,9 +497,9 @@ def _delete_existing_providers(self, location):
497497
self.wlst_helper.cd(create_path)
498498
for existing_folder_name in existing_folder_names:
499499
try:
500+
self.logger.info('WLSDPLY-12135', existing_folder_name, wlst_base_provider_type, create_path,
501+
class_name=self.__class_name, method_name=_method_name)
500502
self.wlst_helper.delete(existing_folder_name, wlst_base_provider_type)
501-
self.logger.finer('WLSDPLY-12135', existing_folder_name, wlst_base_provider_type, create_path,
502-
class_name=self.__class_name, method_name=_method_name)
503503
except BundleAwareException, bae:
504504
ex = exception_helper.create_exception(self._exception_type, 'WLSDPLY-12134', existing_folder_name,
505505
self.wls_helper.get_weblogic_version(),

core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ WLSDPLY-12132=Unrecognized data type {0}
961961
WLSDPLY-12133=Unable to convert "{0}" to value of type {1}
962962
WLSDPLY-12134=Unable to remove "{0}" in target domain release {1}. The remove is required to properly configure \
963963
the Realm Provider Type {2}. Consult the WebLogic Deploy Tool documentation for further information. : {3}
964-
WLSDPLY-12135=Removed Security provider {0} with Provider type {1} at location {2}
964+
WLSDPLY-12135=Removing Security provider {0} with Provider type {1} at location {2}
965965
WLSDPLY-12136=No default providers installed for {0} at {1}
966966

967967
# domain_creator.py

0 commit comments

Comments
 (0)