Add some logging

This commit is contained in:
James Agnew 2018-04-06 16:14:59 -04:00
parent 0f269a1ab1
commit 22b8e05b1f
1 changed files with 2 additions and 0 deletions

View File

@ -836,10 +836,12 @@ public abstract class BaseHapiTerminologySvcImpl implements IHapiTerminologySvc
storeNewCodeSystemVersion(codeSystemResourcePid, theCodeSystemResource.getUrl(), theCodeSystemResource.getName(), theCodeSystemVersion); storeNewCodeSystemVersion(codeSystemResourcePid, theCodeSystemResource.getUrl(), theCodeSystemResource.getName(), theCodeSystemVersion);
for (ValueSet nextValueSet : theValueSets) { for (ValueSet nextValueSet : theValueSets) {
ourLog.info("Creating ValueSet: {}", nextValueSet.getId());
createOrUpdateValueSet(nextValueSet, theRequestDetails); createOrUpdateValueSet(nextValueSet, theRequestDetails);
} }
for (ConceptMap nextConceptMap : theConceptMaps) { for (ConceptMap nextConceptMap : theConceptMaps) {
ourLog.info("Creating ConceptMap: {}", nextConceptMap.getId());
createOrUpdateConceptMap(nextConceptMap, theRequestDetails); createOrUpdateConceptMap(nextConceptMap, theRequestDetails);
} }