LogLevel

@objc
public enum LogLevel : Int, RawRepresentable

Enumeration that used to set log level

  • Info log level. You may use this level on development to see some informative logs.

    Declaration

    Swift

    case info
  • Warning log level. You may use this level to log some unexpected situations.

    Declaration

    Swift

    case warning
  • Error log level. You may use this level to log some unexpected situations which causes the code does not work correctly.

    Declaration

    Swift

    case error
  • Fatal log level. You may use this level to log a serious situation. This situation may causes crash. Hope you won’t see this log.

    Declaration

    Swift

    case fatal
  • Declaration

    Swift

    public typealias RawValue = Int
  • Declaration

    Swift

    public var rawValue: RawValue { get }
  • Declaration

    Swift

    public init?(rawValue: RawValue)