Interface LoggingAdapter

All Known Implementing Classes:
DummyLoggingAdapter, Log4j2LoggingAdapter, Log4jLoggingAdapter

public interface LoggingAdapter
Allows reading and setting the current loglevel. The implementation depends on the logging framework used.
Version:
$Id: LoggingAdapter.java 1465296 2013-04-06 20:13:45Z tfischer $
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the current loglevel.
    void
    Sets the loglevel to the given loglevel.
  • Method Details

    • getCurrentLoglevel

      Loglevel getCurrentLoglevel()
      Returns the current loglevel.
      Returns:
      the current loglevel, or INFO if the current loglevel cannot be determined.
    • setLoglevel

      void setLoglevel(Loglevel loglevel)
      Sets the loglevel to the given loglevel.
      Parameters:
      loglevel - the loglevel to set, not null.