Module glf.api

Class LegacyAbstractLogger

java.lang.Object
org.seppiko.glf.event.AbstractLogger
org.seppiko.glf.event.LegacyAbstractLogger
All Implemented Interfaces:
Logger

public abstract class LegacyAbstractLogger extends AbstractLogger
Abstract logger for ignore isXXXEnable(Marker)
Author:
Leonard Woo
  • Constructor Details

    • LegacyAbstractLogger

      public LegacyAbstractLogger()
  • Method Details

    • isTraceEnabled

      public boolean isTraceEnabled(Marker marker)
      Description copied from interface: Logger
      Similar to Logger.isTraceEnabled() method except that the marker data is also taken into account.
      Parameters:
      marker - The marker data to take into consideration.
      Returns:
      True if this Logger is enabled for the TRACE level, false otherwise.
    • isDebugEnabled

      public boolean isDebugEnabled(Marker marker)
      Description copied from interface: Logger
      Similar to Logger.isDebugEnabled() method except that the marker data is also taken into account.
      Parameters:
      marker - The marker data to take into consideration.
      Returns:
      True if this Logger is enabled for the DEBUG level, false otherwise.
    • isInfoEnabled

      public boolean isInfoEnabled(Marker marker)
      Description copied from interface: Logger
      Similar to Logger.isInfoEnabled() method except that the marker data is also taken into account.
      Parameters:
      marker - The marker data to take into consideration.
      Returns:
      True if this Logger is enabled for the INFO level, false otherwise.
    • isWarnEnabled

      public boolean isWarnEnabled(Marker marker)
      Description copied from interface: Logger
      Similar to Logger.isWarnEnabled() method except that the marker data is also taken into account.
      Parameters:
      marker - The marker data to take into consideration.
      Returns:
      True if this Logger is enabled for the WARN level, false otherwise.
    • isErrorEnabled

      public boolean isErrorEnabled(Marker marker)
      Description copied from interface: Logger
      Similar to Logger.isErrorEnabled() method except that the marker data is also taken into account.
      Parameters:
      marker - The marker data to take into consideration.
      Returns:
      True if this Logger is enabled for the ERROR level, false otherwise.
    • isFatalEnabled

      public boolean isFatalEnabled(Marker marker)
      Description copied from interface: Logger
      Similar to Logger.isFatalEnabled() method except that the marker data is also taken into account.
      Parameters:
      marker - The marker data to take into consideration.
      Returns:
      True if this Logger is enabled for the FATAL level, false otherwise.