LogLevel

public enum LogLevel : String
extension LogLevel: CustomStringConvertible

Defines character of the log and when it will be displayed

  • Logging only while debugging

    Declaration

    Swift

    case debug
  • Logging info message

    Declaration

    Swift

    case info
  • Logging error

    Declaration

    Swift

    case error
  • Logging fatal error

    Declaration

    Swift

    case fatal
  • Log level string title

    Declaration

    Swift

    public var description: String { get }