Merge pull request #1321 from DarthGizka/fix_source_file_println
ValidationEngine::validate(): print SourceFile::getRef() instead of Object::toString()
This commit is contained in:
commit
d5252813c8
|
@ -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
|
|||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue