Level

@objc
public enum Level : Int
From AdswizzSDK:
extension AdLogger.Level: Comparable
extension AdLogger.Level: CustomStringConvertible

The AdLogger level type.

  • Verbose log level. This is the most verbose. May print object content.

    Declaration

    Swift

    case verbose
  • Debug log level.

    Declaration

    Swift

    case debug
  • Info log level.

    Declaration

    Swift

    case info
  • Error log level. This is the most critical

    Declaration

    Swift

    case error
  • This option doesn’t log anything.

    Declaration

    Swift

    case none
  • <(_:_:) From AdswizzSDK

    Comparable conformance. It allows AdswizzSDK to compare Level instances by their raw value.

    Declaration

    Swift

    public static func < (lhs: AdLogger.Level, rhs: AdLogger.Level) -> Bool
  • description From AdswizzSDK

    CustomStringConvertible conformance. It returns a human-readable description for Level values.

    Declaration

    Swift

    public var description: String { get }