Skip to content

Commit f048a63

Browse files
committed
Resolve fixmes
1 parent 4ee1afb commit f048a63

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/cache/ResourceIdentifierCacheSvcImpl.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ private String lookupResourceFhirIdForPatientIdentifier(
168168

169169
if (retVal == null) {
170170
retVal = theNewIdSupplier.get();
171-
ourLog.info("Created FHIR ID [{}] for SystemPid[{}] Value[{}]", retVal, theSystem, theValue);
171+
ourLog.trace("Created FHIR ID [{}] for SystemPid[{}] Value[{}]", retVal, theSystem, theValue);
172172
ResourceIdentifierPatientUniqueEntity newEntity = new ResourceIdentifierPatientUniqueEntity();
173173
newEntity.setPk(
174174
new ResourceIdentifierPatientUniqueEntity.PatientIdentifierPk(theSystem, theValue));
@@ -191,8 +191,7 @@ private Long lookupResourceIdentifierSystemFromDatabase(
191191
Long retVal = myResourceIdentifierSystemEntityDao
192192
.findBySystemUrl(theIdentifierSystem)
193193
.orElse(null);
194-
// FIXME: make all info be trace
195-
ourLog.info("Fetched PID[{}] for Identifier System: {}", retVal, theIdentifierSystem);
194+
ourLog.trace("Fetched PID[{}] for Identifier System: {}", retVal, theIdentifierSystem);
196195
return retVal;
197196
});
198197
}

0 commit comments

Comments
 (0)