LogLevel

@objc(GFYLogLevel)
public enum LogLevel : Int, Comparable, Codable, CustomStringConvertible, CaseIterable

Not intended for public use; this enum and its methods are exposed due to technical requirements but are not intended to be used externally. Do not interact with this enum or its constituents.

  • Not intended for public use; this operator is exposed due to technical requirements but is not intended to be used externally. Do not utilize or otherwise interact with this operator.

    Declaration

    Swift

    public static func < (lhs: LogLevel, rhs: LogLevel) -> Bool
  • Not intended for public use; this method is exposed due to technical requirements but is not intended to be used externally. Do not call or otherwise interact with this method.

    Declaration

    Swift

    public var description: String { get }
  • Not intended for public use; this property is exposed due to technical requirements

    Declaration

    Swift

    case disabled = 0
  • Not intended for public use; this property is exposed due to technical requirements

    Declaration

    Swift

    case debug
  • Not intended for public use; this property is exposed due to technical requirements

    Declaration

    Swift

    case info
  • Not intended for public use; this property is exposed due to technical requirements

    Declaration

    Swift

    case call
  • Not intended for public use; this property is exposed due to technical requirements

    Declaration

    Swift

    case warn
  • Not intended for public use; this property is exposed due to technical requirements

    Declaration

    Swift

    case error
  • Not intended for public use; this property is exposed due to technical requirements

    Declaration

    Swift

    case critical
  • Not intended for public use; this method is exposed due to technical requirements but is not intended to be used externally. Do not call or otherwise interact with this method.

    Declaration

    Swift

    public static func withDescription(_ description: String) -> LogLevel?