?? LogLevel

java.lang.Object
java.lang.Enum<LogLevel>
org.osgi.service.log.LogLevel
????????:
Serializable, Comparable<LogLevel>

public enum LogLevel extends Enum<LogLevel>
Log Levels.
???????:
1.4
  • ????????

    • AUDIT

      public static final LogLevel AUDIT
      Audit – Information that must always be logged.
    • ERROR

      public static final LogLevel ERROR
      Error – Information about an error situation.
    • WARN

      public static final LogLevel WARN
      Warning – Information about a failure or unwanted situation that is not blocking.
    • INFO

      public static final LogLevel INFO
      Info – Information about normal operation.
    • DEBUG

      public static final LogLevel DEBUG
      Debug – Detailed output for debugging operations.
    • TRACE

      public static final LogLevel TRACE
      Trace level – Large volume of output for tracing operations.
  • ??????

    • values

      public static LogLevel[] values()
      ???????????????, ??????????????
      ??:
      ???????????????????????????
    • valueOf

      public static LogLevel valueOf(String name)
      ?????????????????? ??????????????????? ????????(?????? ??????)
      ??:
      name - ????????????
      ??:
      ?????????????
      ??:
      IllegalArgumentException - ??????????????????
      NullPointerException - ???????
    • implies

      public boolean implies(LogLevel other)
      Returns whether this log level implies the specified log level.
      ??:
      other - The other log level.
      ??:
      true If this log level implies the specified log level; false otherwise.