When you have a dependency on the R4 examples package, you get 100s of messages about every value set, profile, etc. that's being ignored. Changed this so it's only a debug log message rather than something that happens all the time.

This commit is contained in:
Lloyd McKenzie 2022-02-16 23:17:09 -07:00
parent edd2c43e64
commit 4d26ca64fb
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
if ((packageInfo == null || !packageInfo.isExamplesPackage()) || !map.containsKey(r.getId())) {
map.put(r.getId(), new ResourceProxy(r));
} else {
System.out.println("Ignore "+r.fhirType()+"/"+r.getId()+" from package "+packageInfo.toString());
logger.logDebugMessage(LogCategory.PROGRESS,"Ignore "+r.fhirType()+"/"+r.getId()+" from package "+packageInfo.toString());
}
if (r instanceof CodeSystem || r instanceof NamingSystem) {