Skip to content

Commit 8ba4eee

Browse files
Change logging to match existing style
1 parent 2d88287 commit 8ba4eee

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cumulusci/tasks/bulkdata/generate_and_load_data.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,15 +331,15 @@ def _validate_mapping(self, subtask_options):
331331
# Log summary message
332332
self.logger.info("")
333333
if validation_result and validation_result.has_errors():
334-
self.logger.error("== VALIDATION FAILED ==")
334+
self.logger.error("== Validation Failed ==")
335335
self.logger.error(f" Errors: {len(validation_result.errors)}")
336336
if validation_result.warnings:
337337
self.logger.warning(f" Warnings: {len(validation_result.warnings)}")
338338
elif validation_result and validation_result.warnings:
339-
self.logger.warning("== VALIDATION SUCCESSFUL (WITH WARNINGS) ==")
339+
self.logger.warning("== Validation Successful (With Warnings) ==")
340340
self.logger.warning(f" Warnings: {len(validation_result.warnings)}")
341341
else:
342-
self.logger.info("== VALIDATION SUCCESSFUL ==")
342+
self.logger.info("== Validation Successful ==")
343343
self.logger.info("")
344344

345345
return validation_result

0 commit comments

Comments
 (0)