Skip to content

Commit

Permalink
Reduced precision in tracking to resource id
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Chicoine committed Oct 24, 2023
1 parent 97fa1f6 commit f6b8e2e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -824,8 +824,8 @@ public static void outputResource(IBaseResource resource, String encoding, FhirC
String resourceFileLocation = outputPath + separator +
resource.getIdElement().getResourceType() + "-" + resource.getIdElement().getIdPart() +
"." + encoding;
if (outputResourceTracker.containsKey(resourceFileLocation)){
LogUtils.info("This resource has already been processed: " + resourceFileLocation);
if (outputResourceTracker.containsKey(resource.getIdElement().getResourceType())){
LogUtils.info("This resource has already been processed: " + resource.getIdElement().getResourceType());
return;
}

Expand Down

0 comments on commit f6b8e2e

Please sign in to comment.