fix logging bug in JsonParser

This commit is contained in:
Grahame Grieve 2022-06-24 11:41:33 +02:00
parent 2c46cfe690
commit 38b0ed94ed
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ import org.slf4j.LoggerFactory;
public abstract class JsonParserBase extends ParserBase implements IParser {
static {
LoggerFactory.getLogger("org.hl7.fhir.r5.formats.XmlParserBase").debug("XML Parser is being loaded");
LoggerFactory.getLogger("org.hl7.fhir.r5.formats.JsonParserBase").debug("JSON Parser is being loaded");
ClassesLoadedFlags.ourJsonParserBaseLoaded = true;
}