LogLevel

public enum LogLevel: Int, CustomStringConvertible

Log Level used in Houston Logger

  • all

    Log all levels

    Declaration

    Swift

    case all = 0
  • Log verbose level and higher

    Declaration

    Swift

    case verbose = 1
  • Log debug level and higher

    Declaration

    Swift

    case debug = 2
  • Log info level and higher

    Declaration

    Swift

    case info = 3
  • Log warning level and higher

    Declaration

    Swift

    case warning = 4
  • Log error level and higher

    Declaration

    Swift

    case error = 5
  • No not log

    Declaration

    Swift

    case none = 6
  • Human-Readable description of Log Level

    Declaration

    Swift

    public var description: String
  • Emoji Log Level Indicator

    Declaration

    Swift

    public var emoji : String
  • The default logging level in DEBUG is all

    Declaration

    Swift

    static public let defaultLevel = LogLevel.all
  • The default logging level in RELEASE is warning

    Declaration

    Swift

    public enum LogLevel: Int, CustomStringConvertible