Enum Class AdapterLevel

java.lang.Object
java.lang.Enum<AdapterLevel>
com.alipay.sofa.common.log.adapter.level.AdapterLevel
All Implemented Interfaces:
Serializable, Comparable<AdapterLevel>, Constable

public enum AdapterLevel extends Enum<AdapterLevel>
AdapterLevel

适配日志级别,通过这个日志级别来适配映射 log4j、log4j2 和 logback 的日志级别,通过统一接口来屏蔽差异

Created by yangguanchao on 17/4/28.

  • Enum Constant Details

    • ERROR

      public static final AdapterLevel ERROR
      An error in the application, possibly recoverable.
    • WARN

      public static final AdapterLevel WARN
      An event that might possible lead to an error.
    • INFO

      public static final AdapterLevel INFO
      An event for informational purposes.
    • DEBUG

      public static final AdapterLevel DEBUG
      A general debugging event.
    • TRACE

      public static final AdapterLevel TRACE
      A fine-grained debug message, typically capturing the flow through the application.
  • Method Details

    • values

      public static AdapterLevel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AdapterLevel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getAdapterLevel

      public static AdapterLevel getAdapterLevel(String adapterLogLevelMsg)
    • getLogLevelMsg

      public String getLogLevelMsg()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<AdapterLevel>