Skip to content

Commit ca7a28f

Browse files
Merge pull request #272 from oracle/jira-wdt-47-logging-fix
JIRA WDT-47 - Add class and method names to logging
2 parents c28f07b + a76f893 commit ca7a28f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/main/python/wlsdeploy/tool/validate/validator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,8 @@ def __process_model_node(self, model_node, validation_location, validation_resul
672672
validation_result)
673673
elif self._alias_helper.is_custom_folder_allowed(validation_location):
674674
# custom folders are not validated, just log this and continue
675-
self._logger.info('WLSDPLY-05037', model_folder_path)
675+
self._logger.info('WLSDPLY-05037', model_folder_path,
676+
class_name=_class_name, method_name=_method_name)
676677
else:
677678
# At this point we know that key IS NOT a valid attribute or folder, meaning
678679
# that given the location object, it is NOT:

0 commit comments

Comments
 (0)