Adding logging

This commit is contained in:
James Agnew 2017-05-30 15:39:33 -04:00
parent 97c83cd8f0
commit 52a5fcce17
1 changed files with 1 additions and 0 deletions
hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao

View File

@ -848,6 +848,7 @@ public abstract class BaseHapiFhirResourceDao<T extends IBaseResource> extends B
@Override
public void reindex(T theResource, ResourceTable theEntity) {
ourLog.debug("Indexing resource {} - PID {}", theResource.getIdElement().getValue(), theEntity.getId());
updateEntity(theResource, theEntity, null, true, false, theEntity.getUpdatedDate(), true, false);
}