Merge pull request #1321 from DarthGizka/fix_source_file_println

ValidationEngine::validate(): print SourceFile::getRef() instead of Object::toString()
This commit is contained in:
Grahame Grieve 2023-06-28 06:33:38 +10:00 committed by GitHub
commit d5252813c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -598,7 +598,7 @@ public class ValidationEngine implements IValidatorResourceFetcher, IValidationP
if (ref.isProcess() || all) {
TimeTracker.Session tts = context.clock().start("validation");
context.clock().milestone();
System.out.println(" Validate " + ref);
System.out.println(" Validate " + ref.getRef());
try {
OperationOutcome outcome = validate(ref.getRef(), ref.getCnt().getFocus(), ref.getCnt().getCntType(), profiles, record);
@ -1183,4 +1183,4 @@ public class ValidationEngine implements IValidatorResourceFetcher, IValidationP
}
}
}