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

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

There is a newer version: 6.5.6
Show newest version
package org.hl7.fhir.r5.context;

import org.hl7.fhir.utilities.MarkedToMoveToAdjunctPackage;

@MarkedToMoveToAdjunctPackage
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