Enum Class InternalLogLevel

java.lang.Object
java.lang.Enum<InternalLogLevel>
io.micrometer.core.util.internal.logging.InternalLogLevel
All Implemented Interfaces:
Serializable, Comparable<InternalLogLevel>, Constable

@Deprecated public enum InternalLogLevel extends Enum<InternalLogLevel>
Deprecated.
Please use InternalLogLevel instead.
NOTE: This file has been copied from {io.netty.util.internal.logging}. The log level that InternalLogger can log at.
  • Enum Constant Details

    • TRACE

      public static final InternalLogLevel TRACE
      Deprecated.
      'TRACE' log level.
    • DEBUG

      public static final InternalLogLevel DEBUG
      Deprecated.
      'DEBUG' log level.
    • INFO

      public static final InternalLogLevel INFO
      Deprecated.
      'INFO' log level.
    • WARN

      public static final InternalLogLevel WARN
      Deprecated.
      'WARN' log level.
    • ERROR

      public static final InternalLogLevel ERROR
      Deprecated.
      'ERROR' log level.
  • Method Details

    • values

      public static InternalLogLevel[] values()
      Deprecated.
      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 InternalLogLevel valueOf(String name)
      Deprecated.
      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