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:
parent
edd2c43e64
commit
4d26ca64fb
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue