LogLevel

@objc(KRTLogLevel)
public enum LogLevel : Int, Comparable

ログレベルを表す列挙型です。

  • off

    Off

    Declaration

    Swift

    case off
  • Error

    Declaration

    Swift

    case error
  • Warning

    Declaration

    Swift

    case warn
  • Information

    Declaration

    Swift

    case info
  • Debug

    Declaration

    Swift

    case debug
  • Verbose

    Declaration

    Swift

    case verbose
  • Declaration

    Swift

    public static func < (lhs: LogLevel, rhs: LogLevel) -> Bool