Skip to content

Commit 0fdbe1a

Browse files
committed
Merge branch 'logging-fixes' into 'main'
fixing log method name mismatches See merge request weblogic-cloud/weblogic-deploy-tooling!1469
2 parents cf40b37 + fb31df3 commit 0fdbe1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/python/wlsdeploy/aliases/alias_entries.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ def get_wlst_create_path_for_location(self, location):
442442
:raises AliasException: if the location is missing required name tokens or
443443
the alias data for the location is bad
444444
"""
445-
_method_name = 'get_wlst_list_path_for_location'
445+
_method_name = 'get_wlst_create_path_for_location'
446446

447447
_logger.entering(str_helper.to_string(location), class_name=_class_name, method_name=_method_name)
448448
tokenized_path = self.__get_path_for_location(location, WLST_CREATE_PATH)
@@ -963,7 +963,7 @@ def get_folder_short_name_for_location(self, location):
963963
:param location: location context for the model folder
964964
:return: short name or model_folder name if not short named assigned
965965
"""
966-
_method_name = 'get_folder_short_name'
966+
_method_name = 'get_folder_short_name_for_location'
967967
_logger.entering(location.get_folder_path(), class_name=_class_name, method_name=_method_name)
968968
folder_dict = self.__get_dictionary_for_location(location, False)
969969
result = ''

0 commit comments

Comments
 (0)