All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hl7.fhir.r5.context.ILoggingService Maven / Gradle / Ivy

The newest version!
package org.hl7.fhir.r5.context;

public interface ILoggingService {
  public enum LogCategory {
    INIT, 
    PROGRESS,
    TX, 
    CONTEXT, 
    GENERATE,
    HTML 
  }
  public void logMessage(String message); // status messages, always display
  public void logDebugMessage(ILoggingService.LogCategory category, String message); // verbose; only when debugging 
  public boolean isDebugLogging(); // whether to log debug information
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy